forked from dracut-ng/dracut-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (63 loc) · 2.15 KB
/
integration-extra.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
name: Daily Integration Tests
on:
schedule:
- cron: '30 23 * * *' # every day at 23:30 UTC
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
pull_request:
paths:
- '.github/workflows/integration-extra.yml'
jobs:
basic:
# run this test on all containers
name: ${{ matrix.test }} on ${{ matrix.container }}
runs-on: ubuntu-latest
timeout-minutes: 20
concurrency:
group: basic-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}
cancel-in-progress: true
strategy:
fail-fast: false
matrix:
container: [
"alpine",
"alpine:edge",
"arch",
"debian",
"debian:sid",
"fedora",
"fedora:rawhide",
"centos:stream10-development",
"gentoo",
"gentoo:amd64-openrc",
"opensuse",
"ubuntu",
"ubuntu:rolling",
"void",
]
test: [
"10",
"11",
"12",
"20",
"21",
"22",
"23",
"25",
"26",
"30",
"40",
"41",
"42",
"80",
"81",
"82",
]
container:
image: ghcr.io/dracut-ng/${{ matrix.container }}
options: '--device=/dev/kvm --privileged'
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "${{ matrix.container }} TEST-${{ matrix.test }}"
run: ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}