From b68f2710c25a927fdd58e97a889f606e7a4bdb3f Mon Sep 17 00:00:00 2001 From: Romain Francois Date: Tue, 14 Nov 2023 10:12:45 +0100 Subject: [PATCH] Disable CI on windows --- .github/workflows/main.yml | 90 +++++++++++++++++++------------------- 1 file changed, 45 insertions(+), 45 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 10308c7..7357ee2 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -61,50 +61,50 @@ jobs: cd test pytest . --reruns 5 - win: - - runs-on: ${{ matrix.os }} - - strategy: - fail-fast: false - matrix: - os: [ windows-latest] - - steps: - - uses: actions/checkout@v2 - - - name: install mamba - uses: mamba-org/provision-with-micromamba@main - with: - environment-file: environment-dev.yml - environment-name: xeus-r - - - name: micromamba shell hook - shell: powershell - run: | - micromamba shell hook -s cmd.exe -p C:\Users\runneradmin\micromamba-root - - - name: cmake configure - shell: cmd - run: | - call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus-r - mkdir -p bld - cd bld - cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DXEUS_BUILD_TESTS=ON -DDEPENDENCY_SEARCH_PREFIX="%CONDA_PREFIX%\Library" -DCMAKE_PREFIX_PATH="%CONDA_PREFIX%\Library" -DCMAKE_INSTALL_PREFIX="%CONDA_PREFIX%" - - - name: build - shell: cmd - run: | - call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus-r - cd bld - set CL=/MP - nmake install - - - name: test - shell: cmd - run: | - call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus-r - cd test - pytest . --reruns 5 +# win: +# +# runs-on: ${{ matrix.os }} +# +# strategy: +# fail-fast: false +# matrix: +# os: [ windows-latest] +# +# steps: +# - uses: actions/checkout@v2 +# +# - name: install mamba +# uses: mamba-org/provision-with-micromamba@main +# with: +# environment-file: environment-dev.yml +# environment-name: xeus-r +# +# - name: micromamba shell hook +# shell: powershell +# run: | +# micromamba shell hook -s cmd.exe -p C:\Users\runneradmin\micromamba-root +# +# - name: cmake configure +# shell: cmd +# run: | +# call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus-r +# mkdir -p bld +# cd bld +# cmake .. -G "NMake Makefiles" -DCMAKE_BUILD_TYPE=Release -DXEUS_BUILD_TESTS=ON -DDEPENDENCY_SEARCH_PREFIX="%CONDA_PREFIX%\Library" -DCMAKE_PREFIX_PATH="%CONDA_PREFIX%\Library" -DCMAKE_INSTALL_PREFIX="%CONDA_PREFIX%" +# +# - name: build +# shell: cmd +# run: | +# call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus-r +# cd bld +# set CL=/MP +# nmake install +# +# - name: test +# shell: cmd +# run: | +# call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus-r +# cd test +# pytest . --reruns 5