Skip to content
Draft
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
14 changes: 13 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -558,7 +558,6 @@ jobs:
- Thread
free-threading:
- false
- true
sanitizer:
- TSan
include:
Expand All @@ -570,6 +569,17 @@ jobs:
sanitizer: ${{ matrix.sanitizer }}
free-threading: ${{ matrix.free-threading }}

# XXX: Temporarily allow this job to fail to not block PRs.
build-san-free-threading:
# ${{ '' } is a hack to nest jobs under the same sidebar category.
name: Sanitizers${{ '' }} # zizmor: ignore[obfuscation]
needs: build-context
if: needs.build-context.outputs.run-ubuntu == 'true'
uses: ./.github/workflows/reusable-san.yml
with:
sanitizer: TSan
free-threading: true

cross-build-linux:
name: Cross build Linux
runs-on: ubuntu-latest
Expand Down Expand Up @@ -673,6 +683,7 @@ jobs:
- test-hypothesis
- build-asan
- build-san
- build-san-free-threading
- cross-build-linux
- cifuzz
if: always()
Expand All @@ -684,6 +695,7 @@ jobs:
allowed-failures: >-
build-android,
build-emscripten,
build-san-free-threading,
build-windows-msi,
build-ubuntu-ssltests,
test-hypothesis,
Expand Down
Loading