Update azure-pipelines.yml
This commit is contained in:
parent
5f8c04925d
commit
bf5ed63622
|
@ -95,15 +95,11 @@ jobs:
|
||||||
conda config --add channels conda-forge --force
|
conda config --add channels conda-forge --force
|
||||||
conda config --set auto_update_conda false
|
conda config --set auto_update_conda false
|
||||||
conda install --yes ninja
|
conda install --yes ninja
|
||||||
- task: CMake@1
|
mkdir build
|
||||||
inputs:
|
cd build
|
||||||
workingDirectory: 'build' # Optional
|
cmake -G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DMSVC_STATIC_CRT=ON ..
|
||||||
cmakeArgs: '-G "Ninja" -DCMAKE_C_COMPILER=clang-cl -DCMAKE_CXX_COMPILER=clang-cl -DMSVC_STATIC_CRT=ON ..'
|
cmake --build . --config Release
|
||||||
- task: CMake@1
|
|
||||||
inputs:
|
|
||||||
cmakeArgs: '--build . --config Release'
|
|
||||||
workingDirectory: 'build'
|
|
||||||
|
|
||||||
- job: Windows_clang_cl_flang
|
- job: Windows_clang_cl_flang
|
||||||
pool:
|
pool:
|
||||||
vmImage: 'windows-latest'
|
vmImage: 'windows-latest'
|
||||||
|
|
Loading…
Reference in New Issue