From 51d47fb3f43d7415fae483f0a8a20707b22dfbf2 Mon Sep 17 00:00:00 2001 From: joaquintides Date: Mon, 24 Apr 2023 10:45:56 +0200 Subject: [PATCH] tried restricting tsan/macos to release only --- .github/workflows/ci.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 044498b4..35d6344e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -84,8 +84,8 @@ jobs: - { compiler: clang, cxxstd: '17,2a', os: macos-11, ccache_key: "17-2a" } - { compiler: clang, cxxstd: '11,14', os: macos-12, sanitize: yes, ccache_key: "11-14" } - { compiler: clang, cxxstd: '17,2a', os: macos-12, sanitize: yes, ccache_key: "17-2a" } - - { compiler: clang, cxxstd: '11,14', os: macos-12, thread-sanitize: yes, targets: 'libs/unordered/test//cfoa_tests', ccache_key: "tsan-macos-1" } - - { compiler: clang, cxxstd: '17,2a', os: macos-12, thread-sanitize: yes, targets: 'libs/unordered/test//cfoa_tests', ccache_key: "tsan-macos-2" } + - { compiler: clang, cxxstd: '11,14', os: macos-12, variant: release, thread-sanitize: yes, targets: 'libs/unordered/test//cfoa_tests', ccache_key: "tsan-macos-1" } + - { compiler: clang, cxxstd: '17,2a', os: macos-12, variant: release, thread-sanitize: yes, targets: 'libs/unordered/test//cfoa_tests', ccache_key: "tsan-macos-2" } timeout-minutes: 240 runs-on: ${{matrix.os}} @@ -199,6 +199,7 @@ jobs: B2_TSAN: ${{matrix.thread-sanitize}} B2_TARGETS: ${{matrix.targets}} B2_STDLIB: ${{matrix.stdlib}} + B2_VARIANT: ${{matrix.variant}} # More entries can be added in the same way, see the B2_ARGS assignment in ci/enforce.sh for the possible keys. # B2_DEFINES: ${{matrix.defines}} # Variables set here (to non-empty) will override the top-level environment variables, e.g.