From: Henrik Gombos Date: Thu, 3 Aug 2023 01:08:27 +0000 (-0400) Subject: ci: run all local tests on all containers (including Gentoo) X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=af3076a1cb527cd7800b9aaeb368c91de1362c75;p=thirdparty%2Fdracut.git ci: run all local tests on all containers (including Gentoo) --- diff --git a/.github/workflows/integration.yml b/.github/workflows/integration.yml index 9631ab5f8..727c2e3f2 100644 --- a/.github/workflows/integration.yml +++ b/.github/workflows/integration.yml @@ -20,6 +20,7 @@ jobs: "arch:latest", "debian:latest", "fedora:latest", + "gentoo:latest", "opensuse:latest", ] test: [ @@ -45,7 +46,7 @@ jobs: options: "--privileged -v /dev:/dev" steps: - name: "Checkout Repository" - uses: actions/checkout@v3 + uses: actions/checkout@v1 with: fetch-depth: 0 @@ -88,29 +89,3 @@ jobs: - 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 }}