commit da258bfd3a87f1303b14450ed628a919e39a35aa
parent 506e8e777d3306d08de669759a74a3f1b1ab362c
Author: [email protected] <[email protected]>
Date: Wed, 20 Feb 2019 17:18:29 +0000
MSYS2: Save/restore directory
Diffstat:
1 file changed, 4 insertions(+), 0 deletions(-)
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
@@ -69,9 +69,11 @@ jobs:
vmImage: 'vs2017-win2016'
steps:
- script: |
+ pushd .
choco install llvm ninja msys2
set PATH=C:\tools\msys64\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
pacman --noconfirm --needed -S git base-devel mingw-w64-x86_64-toolchain
+ popd
bash -lc "ci/run.sh build-release -DCMAKE_CXX_COMPILER='C:/Program Files/LLVM/bin/clang++.exe' -DCMAKE_CXX_FLAGS=--target=x86_64-w64-windows-gnu -DCMAKE_BUILD_TYPE=Release"
- job: Windows_MinGW_x86_64_Clang_Debug
@@ -79,9 +81,11 @@ jobs:
vmImage: 'vs2017-win2016'
steps:
- script: |
+ pushd .
choco install llvm ninja msys2
set PATH=C:\tools\msys64\usr\bin;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem
pacman --noconfirm --needed -S git base-devel mingw-w64-i686-toolchain
+ popd
bash -lc "ci/run.sh build-debug -DCMAKE_CXX_COMPILER='C:/Program Files/LLVM/bin/clang++.exe' -DCMAKE_CXX_FLAGS=--target=x86_64-w64-windows-gnu -DCMAKE_BUILD_TYPE=Debug"
- job: Windows_MSVC_x86_64_Clang_Release