We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5e9c567 commit f05f925Copy full SHA for f05f925
.github/workflows/conda_build.yaml
@@ -65,6 +65,19 @@ jobs:
65
66
- name: Set CMAKE_GENERATOR env var
67
run: echo "CMAKE_GENERATOR=Ninja" >> $env:GITHUB_ENV
68
+ - uses: ilammy/msvc-dev-cmd@v1
69
+
70
+ - name: CMake Generation - MSVC
71
+ shell: cmd
72
+ run: cmake -B build --preset=${{ inputs.cmakePreset }} -DCMAKE_C_COMPILER_LAUNCHER=${{ github.workspace }}/buildcache/bin/buildcache.exe -DCMAKE_CXX_COMPILER_LAUNCHER=${{ github.workspace }}/buildcache/bin/buildcache.exe .
73
74
+ - name: Build Project
75
76
+ run: |
77
+ set CL=/MP
78
+ cmake --build build -j 2
79
80
81
- name: Build Conda package using mamba build
82
run:
83
conda mambabuild ${{ github.workspace }}/LyceanEM-Python/conda/
0 commit comments