From c1d54933fe819d0ea5e49168fd474db9cd39c38d Mon Sep 17 00:00:00 2001 From: Sylvain Corlay Date: Tue, 4 Jun 2024 10:37:34 +0200 Subject: [PATCH] .. --- .github/workflows/windows.yml | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 8bd50b8a9..5d7646f4e 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -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: @@ -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