https://github.com/python/cpython/commit/857acd3f7e13afe1edd44cbdcb9d30f947d8af67 commit: 857acd3f7e13afe1edd44cbdcb9d30f947d8af67 branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: vstinner <[email protected]> date: 2026-07-03T11:36:26Z summary:
[3.13] gh-152785: Upgrade GCC from 10 to 13 in GHA Address Sanitizer (GH-152782) (#152950) gh-152785: Upgrade GCC from 10 to 13 in GHA Address Sanitizer (GH-152782) Remove the step which installs GCC 10. This step was needed when Ubuntu only had GCC 9. We are now using Ubuntu 24.04 which has GCC 13. (cherry picked from commit 31a0e0968e92c65019e4e0547475904e9b047d4a) Co-authored-by: Victor Stinner <[email protected]> files: M .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 787acfe7b893ff..9c6ffd26f327eb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -486,10 +486,6 @@ jobs: run: echo "::add-matcher::.github/problem-matchers/gcc.json" - name: Install dependencies run: sudo ./.github/workflows/posix-deps-apt.sh - - name: Set up GCC-10 for ASAN - uses: egor-tensin/setup-gcc@a2861a8b8538f49cf2850980acccf6b05a1b2ae4 # v2.0 - with: - version: 10 - name: Configure OpenSSL env vars run: | echo "MULTISSL_DIR=${GITHUB_WORKSPACE}/multissl" >> "$GITHUB_ENV" _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
