forked from dracut-ng/dracut-ng
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Allow the test to run manually. It also scheduled to runs once a day.
- Loading branch information
Showing
2 changed files
with
57 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
name: Integration Test (extra) | ||
|
||
on: | ||
schedule: | ||
- cron: '30 23 * * *' # every day at 23:30 UTC | ||
|
||
# Allows you to run this workflow manually from the Actions tab | ||
workflow_dispatch: | ||
|
||
jobs: | ||
basic: | ||
# run this test on all containers | ||
name: ${{ matrix.test }} on ${{ matrix.container }} | ||
runs-on: ubuntu-latest | ||
timeout-minutes: 10 | ||
concurrency: | ||
group: basic-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }} | ||
cancel-in-progress: true | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
container: [ | ||
"alpine:edge", | ||
"centos:stream10-development", | ||
"fedora:rawhide", | ||
"debian:sid", | ||
"ubuntu:rolling", | ||
] | ||
test: [ | ||
"10", | ||
"11", | ||
"12", | ||
"20", | ||
"21", | ||
"22", | ||
"23", | ||
"24", | ||
"25", | ||
"26", | ||
"30", | ||
"40", | ||
"41", | ||
"42", | ||
"80", | ||
"81", | ||
] | ||
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 }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters