forked from dracut-ng/dracut-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
56 lines (52 loc) · 1.9 KB
/
daily-omitsystemd.yml
File metadata and controls
56 lines (52 loc) · 1.9 KB
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
---
name: Daily Tests - omitsystemd
on: # yamllint disable-line rule:truthy
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/daily-omitsystemd.yml'
jobs:
omitsystemd:
name: ${{ matrix.test }} on ${{ matrix.container }} on ${{ matrix.architecture.tag }} with no systemd
runs-on: ${{ matrix.architecture.runner }}
timeout-minutes: ${{ matrix.architecture.timeout }}
concurrency:
group: >
daily-omitsystemd-${{ github.workflow }}-${{ github.ref }}
-${{ matrix.container }}-${{ matrix.test }}-${{ matrix.architecture.tag }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
architecture:
- {runner: 'ubuntu-24.04', tag: 'amd', timeout: 20}
- {runner: 'ubuntu-24.04-arm', tag: 'arm', timeout: 60}
container:
- debian:latest
test:
- "10"
- "11"
- "13"
- "14"
- "20"
- "21"
- "26"
- "30"
- "31"
- "50"
- "60"
- "71"
- "80"
- "81"
- "82"
container:
image: ghcr.io/dracut-ng/${{ matrix.container }}
options: '--device=/dev/kvm --privileged'
steps:
- name: "Checkout Repository"
uses: actions/checkout@v6
- name: "${{ matrix.container }} TEST-${{ matrix.test }}"
run: >
TEST_DRACUT_ARGS="--omit systemd"
./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}