From 4b2b9b22f55973ad2afa9f1a275def9ba744c339 Mon Sep 17 00:00:00 2001 From: "Petr \"Stone\" Hracek" Date: Wed, 14 Sep 2022 14:00:16 +0200 Subject: [PATCH] Get rid off check for .exclude files. It does not make sense Signed-off-by: Petr "Stone" Hracek --- .github/workflows/container-tests.yml | 8 +------- .github/workflows/openshift-tests.yml | 8 +------- 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.github/workflows/container-tests.yml b/.github/workflows/container-tests.yml index 560e03cc..9912e050 100644 --- a/.github/workflows/container-tests.yml +++ b/.github/workflows/container-tests.yml @@ -100,16 +100,10 @@ jobs: with: files: "${{ matrix.version }}/${{ steps.vars.outputs.DOCKERFILE_NAME }}" - - name: Check that .exclude-${{ matrix.os_test }} file is not present - id: check_exclude_file - uses: andstor/file-existence-action@v1 - with: - files: "${{ matrix.version }}/.exclude-${{ matrix.os_test }}" - # https://github.com/sclorg/testing-farm-as-github-action - name: Schedule tests for ${{ matrix.version }} - ${{ matrix.context }} id: github_action - if: ${{ steps.check_exclude_file.outputs.files_exists == 'false' && steps.check_dockerfile.outputs.files_exists == 'true' }} + if: steps.check_dockerfile.outputs.files_exists == 'true' uses: sclorg/testing-farm-as-github-action@v1 with: api_key: ${{ secrets[matrix.api_key] }} diff --git a/.github/workflows/openshift-tests.yml b/.github/workflows/openshift-tests.yml index 3950456c..b426f8ee 100644 --- a/.github/workflows/openshift-tests.yml +++ b/.github/workflows/openshift-tests.yml @@ -84,16 +84,10 @@ jobs: with: files: "${{ matrix.version }}/${{ steps.vars.outputs.DOCKERFILE_NAME }}" - - name: Check that .exclude-${{ matrix.os_test }} file is not present - id: check_exclude_file - uses: andstor/file-existence-action@v1 - with: - files: "${{ matrix.version }}/.exclude-${{ matrix.os_test }}" - # https://github.com/sclorg/testing-farm-as-github-action - name: Schedule tests for ${{ matrix.version }} - ${{ matrix.context }} id: github_action - if: ${{ steps.check_exclude_file.outputs.files_exists == 'false' && steps.check_dockerfile.outputs.files_exists == 'true' }} + if: steps.check_dockerfile.outputs.files_exists == 'true' uses: sclorg/testing-farm-as-github-action@v1 with: api_key: ${{ secrets[matrix.api_key] }}