Skip to content

Commit

Permalink
..win
Browse files Browse the repository at this point in the history
  • Loading branch information
DerThorsten committed Jun 4, 2024
1 parent eb1ffce commit 2765fa5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,12 +91,12 @@ jobs:
- name: Create and activate env
shell: cmd /C CALL {0}
run: |
$MAMBA_EXE create -f xeus-mylang\environment-dev.yml -y --name xeus_cookiecutter_test_env
%MAMBA_EXE create -f xeus-mylang\environment-dev.yml -y --name xeus_cookiecutter_test_env
- name: Configure cmake
shell: cmd /C CALL {0}
run: |
$MAMBA_EXE activate xeus_cookiecutter_test_env
%MAMBA_EXE activate xeus_cookiecutter_test_env
cd xeus-mylang
mkdir -p bld
cd bld
Expand All @@ -105,15 +105,15 @@ jobs:
- name: Build and install
shell: cmd /C CALL {0}
run: |
$MAMBA_EXE activate xeus_cookiecutter_test_env
%MAMBA_EXE activate xeus_cookiecutter_test_env
cd xeus-mylang/bld
set CL=/MP
nmake install
- name: Test
shell: cmd /C CALL {0}
run: |
$MAMBA_EXE activate xeus_cookiecutter_test_env
%MAMBA_EXE activate xeus_cookiecutter_test_env
cd xeus-mylang/test
pytest . --reruns 5
Expand Down

0 comments on commit 2765fa5

Please sign in to comment.