Skip to content

Commit

Permalink
Add more shell args
Browse files Browse the repository at this point in the history
  • Loading branch information
IsabelParedes committed Dec 22, 2023
1 parent 2eff6f4 commit 86b3d7b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat install cxx-compiler -c conda-forge -y
- name: cmake configure
shell: cmd
shell: cmd /C CALL {0}
run: |
call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus_cookiecutter_test_env
cd xeus-mylang
Expand All @@ -122,15 +122,15 @@ jobs:
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
shell: cmd /C CALL {0}
run: |
call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus_cookiecutter_test_env
cd xeus-mylang/bld
set CL=/MP
nmake install
- name: test
shell: cmd
shell: cmd /C CALL {0}
run: |
call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus_cookiecutter_test_env
cd xeus-mylang/test
Expand Down

0 comments on commit 86b3d7b

Please sign in to comment.