chore(deps): bump redhat-plumbers-in-action/differential-shellcheck from 2 to 5 #10
Workflow file for this run
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
name: Integration Test | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
basic: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
container: [ | |
"fedora:latest", | |
] | |
test: [ | |
"04", | |
] | |
fail-fast: false | |
container: | |
image: ghcr.io/${{ github.repository_owner }}/${{ matrix.container }} | |
options: "--privileged -v /dev:/dev" | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "${{ matrix.container }} TEST-${{ matrix.test }}" | |
run: ./tools/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
container: [ | |
"fedora:latest", | |
] | |
test: [ | |
"01", | |
"02", | |
"03", | |
"10", | |
"11", | |
"12", | |
"13", | |
"14", | |
"15", | |
"16", | |
"17", | |
"20", | |
"21", | |
"30", | |
"31", | |
"35", | |
"36", | |
"40", | |
"41", | |
"98", | |
] | |
fail-fast: false | |
container: | |
image: ghcr.io/${{ github.repository_owner }}/${{ matrix.container }} | |
options: "--privileged -v /dev:/dev" | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "${{ matrix.container }} TEST-${{ matrix.test }}" | |
run: ./tools/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} | |
centos-9-stream: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
container: [ | |
"centos:stream9", | |
] | |
# Disabled tests (due to dropped packages in RHEL/CentOS): | |
# 03, 04, 15: requires btrfs | |
# 14: requires dmraid | |
# 30, 31, 35, 36: requires scsi-target-utils | |
test: [ | |
"01", | |
"02", | |
"10", | |
"11", | |
"12", | |
"13", | |
"16", | |
"17", | |
"20", | |
"21", | |
"40", | |
"41", | |
"98", | |
] | |
fail-fast: false | |
container: | |
image: ghcr.io/${{ github.repository_owner }}/${{ matrix.container }} | |
options: "--privileged -v /dev:/dev" | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: "${{ matrix.container }} TEST-${{ matrix.test }}" | |
run: ./tools/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} |