mirror of
https://github.com/python/cpython.git
synced 2026-05-04 09:31:02 +00:00
Merge ff3c00d962 into 68fe899feb
This commit is contained in:
commit
f777282e3d
2 changed files with 7 additions and 7 deletions
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
|
|
@ -519,10 +519,10 @@ 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
|
||||
- name: Set up GCC-14 for ASAN
|
||||
uses: egor-tensin/setup-gcc@a2861a8b8538f49cf2850980acccf6b05a1b2ae4 # v2.0
|
||||
with:
|
||||
version: 10
|
||||
version: 14
|
||||
- name: Configure OpenSSL env vars
|
||||
run: |
|
||||
echo "MULTISSL_DIR=${GITHUB_WORKSPACE}/multissl" >> "$GITHUB_ENV"
|
||||
|
|
|
|||
10
.github/workflows/reusable-san.yml
vendored
10
.github/workflows/reusable-san.yml
vendored
|
|
@ -40,11 +40,11 @@ jobs:
|
|||
# Install clang
|
||||
wget https://apt.llvm.org/llvm.sh
|
||||
chmod +x llvm.sh
|
||||
sudo ./llvm.sh 20
|
||||
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-20 100
|
||||
sudo update-alternatives --set clang /usr/bin/clang-20
|
||||
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-20 100
|
||||
sudo update-alternatives --set clang++ /usr/bin/clang++-20
|
||||
sudo ./llvm.sh 22
|
||||
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-22 100
|
||||
sudo update-alternatives --set clang /usr/bin/clang-22
|
||||
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-22 100
|
||||
sudo update-alternatives --set clang++ /usr/bin/clang++-22
|
||||
|
||||
if [ "${SANITIZER}" = "TSan" ]; then
|
||||
# Reduce ASLR to avoid TSan crashing
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue