2020-11-30 23:57:52 +03:00
name : mkosi
# Simple boot tests that build and boot the mkosi images generated by the mkosi config files in .mkosi.
on :
push :
branches :
2021-01-21 16:52:18 +03:00
- main
2020-11-30 23:57:52 +03:00
pull_request :
branches :
2021-01-21 16:52:18 +03:00
- main
2020-11-30 23:57:52 +03:00
jobs :
ci :
runs-on : ubuntu-20.04
strategy :
fail-fast : false
matrix :
distro :
- arch
- debian
- ubuntu
- fedora
2021-02-12 20:17:01 +03:00
- opensuse
2020-11-30 23:57:52 +03:00
steps :
- uses : actions/checkout@v2
2021-02-12 20:19:06 +03:00
- uses : systemd/mkosi@v10
2020-11-30 23:57:52 +03:00
- name : Install
2021-05-17 11:36:30 +03:00
run : sudo apt-get update && sudo apt-get install --no-install-recommends python3-pexpect python3-jinja2
2020-11-30 23:57:52 +03:00
2021-01-03 18:05:06 +03:00
- name : Symlink
run : ln -s .mkosi/mkosi.${{ matrix.distro }} mkosi.default
2021-02-26 19:06:25 +03:00
# Ubuntu's systemd-nspawn doesn't support faccessat2() syscall, which is
# required, since current Arch's glibc implements faccessat() via faccessat2().
- name : Update systemd-nspawn
if : ${{ matrix.distro == 'arch' }}
run : |
echo "deb-src http://archive.ubuntu.com/ubuntu/ $(lsb_release -cs) main restricted universe multiverse" | sudo tee -a /etc/apt/sources.list
sudo apt update
sudo apt build-dep systemd
meson build
ninja -C build
sudo ln -svf $PWD/build/systemd-nspawn `which systemd-nspawn`
systemd-nspawn --version
2020-11-30 23:57:52 +03:00
- name : Build ${{ matrix.distro }}
2021-02-12 20:13:59 +03:00
run : sudo python3 -m mkosi --password= --network-veth=no --qemu-headless build
2020-11-30 23:57:52 +03:00
2021-05-19 22:29:42 +03:00
- name : Show ${{ matrix.distro }} image summary
run : sudo python3 -m mkosi --password= --qemu-headless summary
2020-11-30 23:57:52 +03:00
- name : Boot ${{ matrix.distro }} systemd-nspawn
2021-02-12 20:13:59 +03:00
run : sudo ./.github/workflows/test_mkosi_boot.py python3 -m mkosi --password= --network-veth=no --qemu-headless boot
2020-11-30 23:57:52 +03:00
- name : Boot ${{ matrix.distro }} QEMU
2021-02-12 20:13:59 +03:00
run : sudo ./.github/workflows/test_mkosi_boot.py python3 -m mkosi --password= --network-veth=no --qemu-headless qemu