uses: actions/checkout@v4
- name: "${{ matrix.container }} TEST-${{ matrix.test }}"
run: ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}
+ network:
+ name: ${{ matrix.test }} on ${{ matrix.container }} ${{ matrix.network }} networking
+ runs-on: ubuntu-24.04
+ timeout-minutes: 20
+ concurrency:
+ group: network-${{ github.workflow }}-${{ github.ref }}-${{ matrix.container }}-${{ matrix.test }}-${{ matrix.network }}
+ cancel-in-progress: true
+ strategy:
+ fail-fast: false
+ matrix:
+ network:
+ - ""
+ - network-manager
+ - systemd-networkd
+ - network-legacy
+ container:
+ - arch:latest
+ - debian:latest
+ test:
+ - "50"
+ container:
+ image: ghcr.io/dracut-ng/${{ matrix.container }}-amd
+ options: '--device=/dev/kvm'
+ steps:
+ - name: "Checkout Repository"
+ uses: actions/checkout@v4
+ - name: "${{ matrix.container }} TEST-${{ matrix.test }}"
+ run: USE_NETWORK=${{ matrix.network }} ./test/test-container.sh "TEST-${{ matrix.test }}" ${{ matrix.test }}