Skip to content

Commit

Permalink
avoiding tsan build on llvm and windows
Browse files Browse the repository at this point in the history
  • Loading branch information
benny-edlund committed Sep 16, 2023
1 parent b44fb4d commit e2f65af
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ on:
tags:
branches:
- main
- develop

env:
# Conan cache environment variables
Expand Down Expand Up @@ -121,7 +120,7 @@ jobs:

- name: Configure
run:
cd build; cmake .. -G "${{matrix.generator}}" -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE:STRING=${{matrix.build_type}} -DENABLE_DEVELOPER_MODE:BOOL=${{matrix.developer_mode}} -DENABLE_COVERAGE:BOOL=${{ matrix.build_type == 'Debug' && matrix.developer_mode == 'OFF' }} -DGIT_SHA:STRING=${{ github.sha }};
cd build; cmake .. -G "${{matrix.generator}}" -DCMAKE_TOOLCHAIN_FILE=conan_toolchain.cmake -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DENABLE_DEVELOPER_MODE=${{matrix.developer_mode}} -DENABLE_COVERAGE=${{ matrix.build_type == 'Debug' && matrix.developer_mode == 'OFF' }} -DGIT_SHA:STRING=${{ github.sha }};

- name: Build
# Remove llvm from env to avoid issues with gcc
Expand Down

0 comments on commit e2f65af

Please sign in to comment.