Skip to content

Commit

Permalink
Conditionalize conan step for windows
Browse files Browse the repository at this point in the history
  • Loading branch information
dmeybohm committed Oct 29, 2023
1 parent f46f486 commit 349ee6e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@ jobs:
run: conan profile new default --detect

- name: Update profile
if: ${{ matrix.os }} = "ubuntu-latest"
run: conan profile update settings.compiler.libcxx=libstdc++11 default
shell: bash
run: [ "${{ matrix.os }}" = "ubuntu-latest" ] && conan profile update settings.compiler.libcxx=libstdc++11 default

- name: Install dependencies
run: conan install . -pr:b=default -s build_type=${{ matrix.build_type }} --install-folder=${{github.workspace}}/build
Expand Down

0 comments on commit 349ee6e

Please sign in to comment.