From: Laszlo Gombos Date: Mon, 17 Oct 2022 00:46:55 +0000 (+0000) Subject: ci: integration test for openrc and musl X-Git-Tag: 058~106 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=cc1c0ffdaa8b08234e03e50796692449ae74d24b;p=thirdparty%2Fdracut.git ci: integration test for openrc and musl --- diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 3d78555f7..28f7b023f 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -79,3 +79,29 @@ jobs: - name: "${{ matrix.container }} TEST-${{ matrix.test }}" run: ./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: [ + "16", + ] + 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 }}