Skip to content

Commit c8c9509

Browse files
committed
ci: use CC and CXX
1 parent ad15d56 commit c8c9509

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci-linux-osx-win-conda.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ jobs:
1717
name: '[conda:${{ matrix.name }}:${{ matrix.build_type }}:c++${{ matrix.cxx_std }}]'
1818
runs-on: ${{ matrix.os }}
1919
env:
20-
CMAKE_C_COMPILER: ${{ matrix.compiler }}
21-
CMAKE_CXX_COMPILER: ${{ matrix.compiler }}
20+
CC: ${{ matrix.compiler }}
21+
CXX: ${{ matrix.compiler }}
2222
CMAKE_CXX_COMPILER_LAUNCHER: ccache
2323
strategy:
2424
fail-fast: false
@@ -104,6 +104,7 @@ jobs:
104104
105105
- name: Build [Conda/Windows]
106106
if: contains(matrix.os, 'windows-')
107+
shell: cmd /C CALL {0}
107108
run: |
108109
cmake --build build --config ${{ matrix.build_type }} -v -j 1
109110

0 commit comments

Comments
 (0)