-
-
Notifications
You must be signed in to change notification settings - Fork 3
80 lines (71 loc) · 1.9 KB
/
build-test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
name: Build test
on:
push:
branches: [ refactor ]
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/ng
echo "COLORBT_SHOW_HIDDEN=1" >> .env
echo "KATSU_LOG=trace" >> .env
katsu -o disk-image katsu.yaml 2>&1
xz -z9 katsu-work/image/katsu.img -c > katsu-work/image/katsu.raw.xz
popd
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: katsudon-arm
path: tests/ng/katsu-work/image/*.raw.xz