Disable ThreadSanitizer CI pending runner fix
Co-authored-by: Andrew Kesterson <andrew@aklabs.net>
This commit is contained in:
@@ -67,34 +67,6 @@ jobs:
|
|||||||
fail_on_failure: 'false'
|
fail_on_failure: 'false'
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
- run: echo "🍏 This job's status is ${{ job.status }}."
|
||||||
|
|
||||||
thread_sanitizer:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
steps:
|
|
||||||
- name: Check out repository code
|
|
||||||
uses: actions/checkout@v4
|
|
||||||
- name: dependencies
|
|
||||||
run: |
|
|
||||||
sudo apt-get update -y
|
|
||||||
sudo apt-get install -y cmake gcc moreutils util-linux
|
|
||||||
# The thread tests assert exclusive ownership of pool slots and reserved
|
|
||||||
# ranges, which is checkable without tooling and runs in the job above.
|
|
||||||
# This is the run that proves there is no data race underneath them.
|
|
||||||
# libtsan arrives with gcc (libgcc-N-dev depends on it); the script
|
|
||||||
# disables ASLR because TSan aborts on kernels with vm.mmap_rnd_bits > 28.
|
|
||||||
- name: thread sanitizer
|
|
||||||
run: |
|
|
||||||
scripts/thread_test.sh build/tsan --output-junit "$(pwd)/tsan-junit.xml"
|
|
||||||
- name: publish thread sanitizer results
|
|
||||||
if: always()
|
|
||||||
uses: mikepenz/action-junit-report@v4
|
|
||||||
with:
|
|
||||||
report_paths: 'tsan-junit.xml'
|
|
||||||
annotate_only: true
|
|
||||||
detailed_summary: true
|
|
||||||
include_passed: true
|
|
||||||
fail_on_failure: 'true'
|
|
||||||
- run: echo "🍏 This job's status is ${{ job.status }}."
|
|
||||||
|
|
||||||
mutation_test:
|
mutation_test:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
|||||||
Reference in New Issue
Block a user