Skip to content

Commit

Permalink
ci: extended integration tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jozzsi committed Nov 2, 2024
1 parent 89a86dc commit 32861d0
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/integration-extra.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Integration Test (extra)

on:
schedule:
- cron: '30 11 * * *' # every day at 11:30 UTC

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

pull_request:
branches: [ main ]

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",
]
container:
image: ghcr.io/dracut-ng/${{ matrix.container }}
options: '--device=/dev/kvm'
steps:
- name: "Checkout Repository"
uses: actions/checkout@v4
- name: "${{ matrix.container }} TEST-${{ matrix.test }}"
run: ./test/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}

0 comments on commit 32861d0

Please sign in to comment.