Skip to content

Commit

Permalink
Rename bld to build to improve consistency with the wasm case
Browse files Browse the repository at this point in the history
  • Loading branch information
vgvassilev committed Jan 21, 2024
1 parent 0debd32 commit 3d2e9c6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@ jobs:
- name: cmake configure
shell: bash -l {0}
run: |
mkdir -p bld
cd bld
mkdir -p build
cd build
cmake .. \
-DCMAKE_PREFIX_PATH=$CONDA_PREFIX \
-DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \
Expand All @@ -59,19 +59,19 @@ jobs:
- name: build
shell: bash -l {0}
run: |
cd bld
cd build
make -j8
- name: install
shell: bash -l {0}
run: |
cd bld
cd build
make install
- name: Test xeus-cpp C++
shell: bash -l {0}
run: |
cd bld/test
cd build/test
./test_xeus_cpp
timeout-minutes: 4

Expand Down Expand Up @@ -126,15 +126,15 @@ jobs:
shell: cmd
run: |
call C:\Users\runneradmin\micromamba-root\condabin\micromamba.bat activate xeus-cpp
mkdir -p bld
cd bld
mkdir -p build
cd build
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-cpp
cd bld
cd build
set CL=/MP
nmake install
Expand Down

0 comments on commit 3d2e9c6

Please sign in to comment.