Don't insert line feed if already at end of line when printing tab co… #8
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push, workflow_dispatch] | |
name: Build | |
jobs: | |
build-aarch64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Install Dependencies | |
run: sudo apt-get install -y mtools lld gnu-efi | |
- name: Force install aarch64 EFI headers | |
run: sudo cp -r .github/aarch64 /usr/include/efi/ | |
- name: Build | |
run: make ARCH=aarch64 | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: kuroko-efi-aa64 | |
path: | | |
kuroko.efi | |
cdimage.iso | |
build-x86_64: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone Repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
submodules: true | |
- name: Install Dependencies | |
run: sudo apt-get install -y mtools lld gnu-efi | |
- name: Build | |
run: make ARCH=x86_64 | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: kuroko-efi-x64 | |
path: | | |
kuroko.efi | |
cdimage.iso | |