Skip to content

Commit

Permalink
-
Browse files Browse the repository at this point in the history
  • Loading branch information
davidbrochart committed Oct 17, 2023
1 parent 6a28e0e commit b52be91
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
with:
environment-file: env.yml

- name: cmake configure
- name: Configure using CMake
run: |
mkdir -p build
cd build
Expand All @@ -57,6 +57,10 @@ jobs:
matrix:
os: [ windows-2019, windows-2022 ]

defaults:
run:
shell: bash -l {0}

steps:
- name: Checkout repository
uses: actions/checkout@v4
Expand All @@ -65,15 +69,13 @@ jobs:
uses: mamba-org/setup-micromamba@v1
with:
environment-file: env.yml
init-shell: cmd.exe

- name: Make build directory
run: mkdir build

- name: cmake configure
- name: Configure using CMake
shell: cmd
run: |
call C:\Users\runneradmin\micromamba-bin\micromamba.exe activate xeus-qt-python
cmake .. ^
-G Ninja ^
-DCMAKE_BUILD_TYPE=Release ^
Expand All @@ -86,7 +88,6 @@ jobs:
- name: Build and install
shell: cmd
run: |
call C:\Users\runneradmin\micromamba-bin\micromamba.exe activate xeus-qt-python
set CL=/MP
ninja install
working-directory: build

0 comments on commit b52be91

Please sign in to comment.