Skip to content

Commit

Permalink
Update conda-forge-ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
traversaro authored Nov 27, 2024
1 parent c7cf9d7 commit 64e8c80
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/conda-forge-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,19 +55,29 @@ jobs:
if: contains(matrix.os, 'ubuntu') || contains(matrix.os, 'macos')
shell: bash -l {0}
run: |
env
mkdir -p build
cd build
cmake -GNinja -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ..
- name: Configure [Windows]
if: contains(matrix.os, 'windows')
if: contains(matrix.os, 'windows-2019')
shell: bash -l {0}
run: |
env
mkdir -p build
cd build
cmake -G"Visual Studio 16 2019" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ..
- name: Configure [Windows]
if: contains(matrix.os, 'windows-2022')
shell: bash -l {0}
run: |
env
mkdir -p build
cd build
cmake -G"Visual Studio 17 2022" -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} ..
- name: Build
shell: bash -l {0}
run: |
Expand Down

0 comments on commit 64e8c80

Please sign in to comment.