Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
SylvainCorlay committed Jun 4, 2024
1 parent 4975057 commit c1d5493
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,17 @@ jobs:
matrix:
runs-on: [windows-latest]
sys:
- {compiler: default}
- {compiler: msvc}
- {compiler: clang}
# - {compiler: default, date-polyfill: 'ON' }
- {compiler: msvc, date-polyfill: 'ON' }
- {compiler: msvc, date-polyfill: 'OFF' }
- {compiler: clang, date-polyfill: 'ON' }
- {compiler: clang, date-polyfill: 'OFF' }
config:
- { name: Debug }
- { name: Release }
build-system:
- "Visual Studio 17 2022"
- "Ninja"
# - "Ninja"

steps:

Expand Down Expand Up @@ -55,12 +57,7 @@ jobs:
ninja
- name: Configure using CMake
if: matrix.build-system != 'Ninja'
run: cmake -Bbuild -DCMAKE_BUILD_TYPE:STRING=${{matrix.config.name}} -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DBUILD_TESTS=ON -G "${{matrix.build-system}}"

- name: Configure using CMake
if: matrix.build-system == 'Ninja'
run: cmake -Bbuild -DCMAKE_BUILD_TYPE:STRING=${{matrix.config.name}} -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DBUILD_TESTS=ON -DUSE_DATE_POLYFILL=OFF -G "${{matrix.build-system}}"
run: cmake -Bbuild -DCMAKE_BUILD_TYPE:STRING=${{matrix.config.name}} -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DBUILD_TESTS=ON -DUSE_DATE_POLYFILL=${{matrix.sys.date-polyfill}} -G "${{matrix.build-system}}"

- name: Install
working-directory: build
Expand Down

0 comments on commit c1d5493

Please sign in to comment.