File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -22,13 +22,21 @@ jobs:
2222 uses : actions/checkout@v3
2323
2424 - name : Set conda environment
25- uses : mamba-org/setup-micromamba@v1
25+ uses : mamba-org/setup-micromamba@v2
2626 with :
2727 environment-file : environment-dev.yml
2828 cache-environment : true
2929
3030 - name : Configure using CMake
31- run : cmake -Bbuild -DXTENSOR_INSTALL_R_PACKAGES=OFF -G "MinGW Makefiles" -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX -DDOWNLOAD_GTEST=ON $(Build.SourcesDirectory)
31+ run : |
32+ cmake -Bbuild \
33+ -DXTENSOR_INSTALL_R_PACKAGES=OFF \
34+ -DCMAKE_C_COMPILER=$CC \
35+ -DCMAKE_CXX_COMPILER=$CXX \
36+ -G "MinGW Makefiles" \
37+ -DCMAKE_INSTALL_PREFIX=$CONDA_PREFIX \
38+ -DDOWNLOAD_GTEST=ON \
39+ $(Build.SourcesDirectory)
3240
3341 - name : Install
3442 working-directory : build
You can’t perform that action at this time.
0 commit comments