mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
gh-117657: Use clang 18 in TSAN builds (GH-118533)
Use clang 18 in TSAN builds We were using clang 14 which is a couple of years old.
This commit is contained in:
parent
b7778d5902
commit
3a6ff1b1d9
1 changed files with 8 additions and 1 deletions
9
.github/workflows/reusable-tsan.yml
vendored
9
.github/workflows/reusable-tsan.yml
vendored
|
@ -29,7 +29,14 @@ jobs:
|
|||
- name: Install Dependencies
|
||||
run: |
|
||||
sudo ./.github/workflows/posix-deps-apt.sh
|
||||
sudo apt install -y clang
|
||||
# Install clang-18
|
||||
wget https://apt.llvm.org/llvm.sh
|
||||
chmod +x llvm.sh
|
||||
sudo ./llvm.sh 18
|
||||
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-18 100
|
||||
sudo update-alternatives --set clang /usr/bin/clang-18
|
||||
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-18 100
|
||||
sudo update-alternatives --set clang++ /usr/bin/clang++-18
|
||||
# Reduce ASLR to avoid TSAN crashing
|
||||
sudo sysctl -w vm.mmap_rnd_bits=28
|
||||
- name: TSAN Option Setup
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue