Skip to content

Commit da6ea29

Browse files
authored
Merge pull request sclorg#462 from sclorg/remove_exclude_test
Get rid off check for .exclude files. It does not make sense
2 parents 0197080 + 4b2b9b2 commit da6ea29

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

.github/workflows/container-tests.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,16 +100,10 @@ jobs:
100100
with:
101101
files: "${{ matrix.version }}/${{ steps.vars.outputs.DOCKERFILE_NAME }}"
102102

103-
- name: Check that .exclude-${{ matrix.os_test }} file is not present
104-
id: check_exclude_file
105-
uses: andstor/file-existence-action@v1
106-
with:
107-
files: "${{ matrix.version }}/.exclude-${{ matrix.os_test }}"
108-
109103
# https://github.com/sclorg/testing-farm-as-github-action
110104
- name: Schedule tests for ${{ matrix.version }} - ${{ matrix.context }}
111105
id: github_action
112-
if: ${{ steps.check_exclude_file.outputs.files_exists == 'false' && steps.check_dockerfile.outputs.files_exists == 'true' }}
106+
if: steps.check_dockerfile.outputs.files_exists == 'true'
113107
uses: sclorg/testing-farm-as-github-action@v1
114108
with:
115109
api_key: ${{ secrets[matrix.api_key] }}

.github/workflows/openshift-tests.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,10 @@ jobs:
8484
with:
8585
files: "${{ matrix.version }}/${{ steps.vars.outputs.DOCKERFILE_NAME }}"
8686

87-
- name: Check that .exclude-${{ matrix.os_test }} file is not present
88-
id: check_exclude_file
89-
uses: andstor/file-existence-action@v1
90-
with:
91-
files: "${{ matrix.version }}/.exclude-${{ matrix.os_test }}"
92-
9387
# https://github.com/sclorg/testing-farm-as-github-action
9488
- name: Schedule tests for ${{ matrix.version }} - ${{ matrix.context }}
9589
id: github_action
96-
if: ${{ steps.check_exclude_file.outputs.files_exists == 'false' && steps.check_dockerfile.outputs.files_exists == 'true' }}
90+
if: steps.check_dockerfile.outputs.files_exists == 'true'
9791
uses: sclorg/testing-farm-as-github-action@v1
9892
with:
9993
api_key: ${{ secrets[matrix.api_key] }}

0 commit comments

Comments
 (0)