Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,12 @@ jobs:
- name: build + test
uses: ./.github/actions/multi-functest
with:
nix-shell: 'ci'
# clang 22 shell: the default `ci` shell's clang 21 ASan runtime
# deadlocks at process startup on the macos-latest / macOS 26 (Tahoe)
# image (compiler-rt shadow-memory init; same symptom as
# python/cpython#145199), fixed in LLVM >= 22 by
# llvm/llvm-project#191039 (backport #192082).
nix-shell: 'clang22'
nix-cache: 'false'
gh_token: ${{ secrets.GITHUB_TOKEN }}
compile_mode: 'native'
Expand Down
Loading