We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 160ae41 commit 9948458Copy full SHA for 9948458
1 file changed
.github/workflows/windows.yml
@@ -22,13 +22,21 @@ jobs:
22
uses: actions/checkout@v3
23
24
- name: Set conda environment
25
- uses: mamba-org/setup-micromamba@v1
+ uses: mamba-org/setup-micromamba@v2
26
with:
27
environment-file: environment-dev.yml
28
cache-environment: true
29
30
- 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)
+ 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)
40
41
- name: Install
42
working-directory: build
0 commit comments