test(NFS): run either nfsv4 or nfsv3 tests #2092
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: [ master ] | |
env: | |
DEBUGFAIL: "${{ secrets.ACTIONS_STEP_DEBUG && 'rd.debug' }}" | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
container: [ | |
"arch:latest", | |
"debian:latest", | |
"fedora:latest", | |
"opensuse:latest", | |
] | |
test: [ | |
"01", | |
"02", | |
"03", | |
"04", | |
"10", | |
"11", | |
"12", | |
"13", | |
"14", | |
"15", | |
"16", | |
"17", | |
"18", | |
"62", | |
"98", | |
] | |
fail-fast: false | |
container: | |
image: ghcr.io/dracutdevs/${{ matrix.container }} | |
options: "--privileged -v /dev:/dev" | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "${{ matrix.container }} TEST-${{ matrix.test }}" | |
run: ./tools/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} | |
network: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}-${{ matrix.network }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
container: [ | |
"fedora:latest", | |
] | |
network: [ | |
"network-manager", | |
"network-legacy", | |
#"systemd-networkd", | |
#"connman", | |
] | |
test: [ | |
"20", | |
"30", | |
"35", | |
"40", | |
"60", | |
# "50", # times out | |
] | |
fail-fast: false | |
container: | |
image: ghcr.io/dracutdevs/${{ matrix.container }} | |
options: "--privileged -v /dev:/dev" | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: "${{ matrix.container }} TEST-${{ matrix.test }}" | |
run: USE_NETWORK=${{ matrix.network }} ./tools/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} | |
openrc-musl: | |
runs-on: ubuntu-latest | |
timeout-minutes: 45 | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }} | |
cancel-in-progress: true | |
strategy: | |
matrix: | |
container: [ | |
"gentoo:latest", | |
] | |
test: [ | |
"18", | |
] | |
fail-fast: false | |
container: | |
image: ghcr.io/dracutdevs/${{ matrix.container }} | |
options: "--privileged -v /dev:/dev" | |
steps: | |
- name: "Checkout Repository" | |
uses: actions/checkout@v1 | |
with: | |
fetch-depth: 0 | |
- name: "${{ matrix.container }} TEST-${{ matrix.test }}" | |
run: ./tools/test-github.sh "TEST-${{ matrix.test }}" ${{ matrix.test }} |