Skip to content

Commit 3108fc1

Browse files
authored
gh-97923: Always run Ubuntu SSL tests with others in CI (#97940)
1 parent 586cfb0 commit 3108fc1

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

.github/workflows/build.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,13 @@ jobs:
3131
runs-on: ubuntu-latest
3232
outputs:
3333
run_tests: ${{ steps.check.outputs.run_tests }}
34-
run_ssl_tests: ${{ steps.check.outputs.run_ssl_tests }}
3534
steps:
3635
- uses: actions/checkout@v3
3736
- name: Check for source changes
3837
id: check
3938
run: |
4039
if [ -z "$GITHUB_BASE_REF" ]; then
4140
echo '::set-output name=run_tests::true'
42-
echo '::set-output name=run_ssl_tests::true'
4341
else
4442
git fetch origin $GITHUB_BASE_REF --depth=1
4543
# git diff "origin/$GITHUB_BASE_REF..." (3 dots) may be more
@@ -56,7 +54,6 @@ jobs:
5654
#
5755
# https://github.com/python/core-workflow/issues/373
5856
git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name=run_tests::true' || true
59-
git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE '(ssl|hashlib|hmac|^.github)' && echo '::set-output name=run_ssl_tests::true' || true
6057
fi
6158
6259
check_generated_files:
@@ -230,7 +227,7 @@ jobs:
230227
name: 'Ubuntu SSL tests with OpenSSL'
231228
runs-on: ubuntu-20.04
232229
needs: check_source
233-
if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_ssl_tests == 'true'
230+
if: needs.check_source.outputs.run_tests == 'true'
234231
strategy:
235232
fail-fast: false
236233
matrix:

0 commit comments

Comments
 (0)