diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2022-10-07 18:58:46 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-07 18:58:46 (GMT) |
commit | 3108fc1c16fdb73095dd7fcf0930004ae266f805 (patch) | |
tree | 198e7bd81379de7bac08cf84cee3bd6a0b1d74c1 /.github | |
parent | 586cfb01311cac1defb883b928fbb368d6d38e55 (diff) | |
download | cpython-3108fc1c16fdb73095dd7fcf0930004ae266f805.zip cpython-3108fc1c16fdb73095dd7fcf0930004ae266f805.tar.gz cpython-3108fc1c16fdb73095dd7fcf0930004ae266f805.tar.bz2 |
gh-97923: Always run Ubuntu SSL tests with others in CI (#97940)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/build.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1db5c50..dc91c0d 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,7 +31,6 @@ jobs: runs-on: ubuntu-latest outputs: run_tests: ${{ steps.check.outputs.run_tests }} - run_ssl_tests: ${{ steps.check.outputs.run_ssl_tests }} steps: - uses: actions/checkout@v3 - name: Check for source changes @@ -39,7 +38,6 @@ jobs: run: | if [ -z "$GITHUB_BASE_REF" ]; then echo '::set-output name=run_tests::true' - echo '::set-output name=run_ssl_tests::true' else git fetch origin $GITHUB_BASE_REF --depth=1 # git diff "origin/$GITHUB_BASE_REF..." (3 dots) may be more @@ -56,7 +54,6 @@ jobs: # # https://github.com/python/core-workflow/issues/373 git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qvE '(\.rst$|^Doc|^Misc)' && echo '::set-output name=run_tests::true' || true - git diff --name-only origin/$GITHUB_BASE_REF.. | grep -qE '(ssl|hashlib|hmac|^.github)' && echo '::set-output name=run_ssl_tests::true' || true fi check_generated_files: @@ -230,7 +227,7 @@ jobs: name: 'Ubuntu SSL tests with OpenSSL' runs-on: ubuntu-20.04 needs: check_source - if: needs.check_source.outputs.run_tests == 'true' && needs.check_source.outputs.run_ssl_tests == 'true' + if: needs.check_source.outputs.run_tests == 'true' strategy: fail-fast: false matrix: |