Skip to content

Commit

Permalink
iox-#eclipse-iceoryx#692 Remove thread sanitizer for gcc and MacOs
Browse files Browse the repository at this point in the history
Signed-off-by: Ibrahim Kuru <[email protected]>
  • Loading branch information
ibrhmkuru committed Jan 10, 2023
1 parent ffcc26d commit c48b7f7
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:
- uses: actions/checkout@v3
- run: ./tools/ci/run-integration-test.sh

build-test-ubuntu-with-sanitizers-gcc-latest:
build-test-ubuntu-with-address-sanitizer-gcc-latest:
# prevent stuck jobs consuming runners for 3 hours
timeout-minutes: 180
runs-on: ubuntu-20.04
Expand All @@ -95,10 +95,8 @@ jobs:
- uses: actions/checkout@v3
- name: Run Address Sanitizer
run: ./tools/ci/build-test-ubuntu-with-sanitizers.sh gcc asan
- name: Run Thread Sanitizer
run: ./tools/ci/build-test-ubuntu-with-sanitizers.sh gcc tsan || echo "Thread Sanitizer failed!!!"; exit 0

build-test-ubuntu-with-sanitizers-clang-latest:
build-test-ubuntu-with-address-sanitizer-clang-latest:
# prevent stuck jobs consuming runners for 3 hours
timeout-minutes: 180
runs-on: ubuntu-latest
Expand All @@ -110,8 +108,20 @@ jobs:
uses: ./.github/actions/install-iceoryx-deps-and-clang
- name: Run Address Sanitizer
run: ./tools/ci/build-test-ubuntu-with-sanitizers.sh clang asan

build-test-ubuntu-with-thread-sanitizer-clang-latest:
# prevent stuck jobs consuming runners for 3 hours
timeout-minutes: 180
runs-on: ubuntu-latest
needs: pre-flight-check
continue-on-error: true
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install iceoryx dependencies and clang-tidy
uses: ./.github/actions/install-iceoryx-deps-and-clang
- name: Run Thread Sanitizer
run: ./tools/ci/build-test-ubuntu-with-sanitizers.sh clang tsan || echo "Thread Sanitizer failed!!!"; exit 0
run: ./tools/ci/build-test-ubuntu-with-sanitizers.sh clang tsan

build-test-macos-with-sanitizers:
# prevent stuck jobs consuming runners for 3 hours
Expand All @@ -122,8 +132,6 @@ jobs:
- uses: actions/checkout@v3
- name: Run Address Sanitizer
run: ./tools/ci/build-test-macos-with-sanitizers.sh asan
- name: Run Thread Sanitizer
run: ./tools/ci/build-test-macos-with-sanitizers.sh tsan || echo "Thread Sanitizer failed!!!"; exit 0

# gcc 5.4 is compiler used in QNX 7.0
build-test-ubuntu-with-gcc54:
Expand Down

0 comments on commit c48b7f7

Please sign in to comment.