Skip to content

Commit

Permalink
ci updates for windows build
Browse files Browse the repository at this point in the history
  • Loading branch information
bennyedlund committed Sep 17, 2023
1 parent ba2201c commit 668a4d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,9 +107,9 @@ jobs:
cmake: true
ninja: true
conan: 2.0.10
ccache: true
ccache: false
clangtidy: ${{ env.CLANG_TIDY_VERSION }}
cppcheck: true
cppcheck: false
gcovr: true
opencppcoverage: false

Expand All @@ -120,7 +120,7 @@ jobs:

- name: Configure
run:
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 }};
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 668a4d4

Please sign in to comment.