just some refactoring? #34
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
name: ARM cross-build test | |
on: | |
push: | |
jobs: | |
unit-test: | |
runs-on: ubuntu-latest | |
container: | |
image: ghcr.io/terrapkg/builder:f38 | |
# Pass /dev from host to container | |
# Very hacky, but it works | |
# Microsoft/Github, if you're reading this, | |
# I'm sorry. | |
options: --privileged -v /dev:/dev | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache DNF packages | |
uses: actions/cache@v2 | |
with: | |
path: /var/cache/dnf | |
key: dnf-${{ runner.os }} | |
restore-keys: | | |
dnf-${{ runner.os }}- | |
dnf- | |
- name: Install dependencies | |
run: | | |
dnf install -y \ | |
xorriso \ | |
rpm \ | |
limine \ | |
systemd \ | |
btrfs-progs \ | |
e2fsprogs \ | |
xfsprogs \ | |
dosfstools \ | |
grub2 \ | |
parted \ | |
util-linux-core \ | |
systemd-container \ | |
grub2-efi \ | |
uboot-images-armv8 \ | |
uboot-tools \ | |
rustc \ | |
qemu-user-static-aarch64 \ | |
qemu-user-binfmt \ | |
qemu-kvm \ | |
qemu-img \ | |
cargo \ | |
systemd-devel \ | |
mkpasswd \ | |
moby-engine | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- uses: Swatinem/rust-cache@v2 | |
- name: Build and install katsu | |
run: | | |
cargo install --path . --debug | |
- name: Run test | |
run: | | |
export PATH=$HOME/.cargo/bin:$PATH | |
pushd tests | |
echo "COLORBT_SHOW_HIDDEN=1" >> .env | |
katsu katsudon-arm.yaml 2>&1 | |
xz -z9 out2.raw -c > out2.raw.xz | |
popd | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: katsudon-arm | |
path: tests/*.raw.xz |