diff options
author | Mike Sinkovsky <msink@permonline.ru> | 2017-03-27 15:42:16 +0500 |
---|---|---|
committer | Mike Sinkovsky <msink@permonline.ru> | 2017-03-28 12:30:51 +0500 |
commit | 89c3ee6a358e40888e39e0f346a0b3d4c8dbd357 (patch) | |
tree | 0d7bfd258a6fd13c6b60de457cbe9057a473afe4 | |
parent | 2376d6eadfef6719d434cd130386aeb66070aff4 (diff) | |
download | meson-89c3ee6a358e40888e39e0f346a0b3d4c8dbd357.zip meson-89c3ee6a358e40888e39e0f346a0b3d4c8dbd357.tar.gz meson-89c3ee6a358e40888e39e0f346a0b3d4c8dbd357.tar.bz2 |
appveyor: run tests against MSYS2-MinGW
-rw-r--r-- | .appveyor.yml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index e4d2e60..b459af0 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -30,6 +30,14 @@ environment: backend: vs2017 APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 + - arch: x86 + compiler: msys2-mingw + backend: ninja + + - arch: x64 + compiler: msys2-mingw + backend: ninja + platform: - x64 @@ -46,6 +54,7 @@ install: - cmd: if %compiler%==msvc2010 ( call "C:\Program Files (x86)\Microsoft Visual Studio 10.0\VC\vcvarsall.bat" %arch% ) - cmd: if %compiler%==msvc2015 ( call "C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\vcvarsall.bat" %arch% ) - cmd: if %compiler%==msvc2017 ( call "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\Common7\Tools\VsDevCmd.bat" -arch=%arch% ) + - cmd: if %compiler%==msys2-mingw (if %arch%==x86 (set "PATH=C:\msys64\mingw32\bin;%PATH%") else (set "PATH=C:\msys64\mingw64\bin;%PATH%")) build_script: - cmd: echo No build step. |