summaryrefslogtreecommitdiff
path: root/.github/workflows/mkosi.yml
blob: 4080da518b85e2965dd2702e0b1e057b839fe0d7 (plain)
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
name: mkosi

# Simple boot tests that build and boot the mkosi images generated by the mkosi config files in .mkosi.

on:
  push:
    branches:
      - main
  pull_request:
    branches:
      - main

jobs:
  ci:
    runs-on: ubuntu-20.04
    strategy:
      fail-fast: false
      matrix:
        distro:
          - arch
          - debian
          - ubuntu
          - fedora

    steps:
    - uses: actions/checkout@v2
    - uses: systemd/mkosi@v9

    - name: Install
      run: sudo apt-get update && sudo apt-get install --no-install-recommends python3-pexpect

    # glibc 2.33-3 shipped on 2021-02-06 breaks running Arch containers on
    # systems with older kernels (like Ubuntu Focal). Until the issue is
    # resolved, let's pin the Arch repositories to glibc 2.32-5 to mitigate
    # the annoying CI fails.
    #
    # See: https://bugs.archlinux.org/task/69563
    - name: Pin repositories to 2021-02-05
      run: sed -i '/^\[Distribution\]/aMirror=https://archive.archlinux.org/repos/2021/02/05/' .mkosi/mkosi.arch

    - name: Symlink
      run: ln -s .mkosi/mkosi.${{ matrix.distro }} mkosi.default

    - name: Build ${{ matrix.distro }}
      run: sudo python3 -m mkosi --password= --qemu-headless build

    - name: Boot ${{ matrix.distro }} systemd-nspawn
      run: sudo ./.github/workflows/test_mkosi_boot.py python3 -m mkosi --password= --qemu-headless boot

    - name: Boot ${{ matrix.distro }} QEMU
      run: sudo ./.github/workflows/test_mkosi_boot.py python3 -m mkosi --password= --qemu-headless qemu