diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-11-05 04:12:59 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek@centricular.com> | 2016-11-10 00:40:16 +0530 |
commit | 440a922c8194a3ef0d6b00978c6d8b7ccfd77a8f (patch) | |
tree | 2fc7ae1e5b9a2dc6f898436c638ef9152cff1fee /.appveyor.yml | |
parent | 88f1d400c070fdd95d00298584c6ac18cf087a14 (diff) | |
download | meson-440a922c8194a3ef0d6b00978c6d8b7ccfd77a8f.zip meson-440a922c8194a3ef0d6b00978c6d8b7ccfd77a8f.tar.gz meson-440a922c8194a3ef0d6b00978c6d8b7ccfd77a8f.tar.bz2 |
appveyor.yml: Print versions of MSBuild and Ninja
This is useful to know what MSBuild.exe and Ninja we are using and
whether the correct one has been set via PATH by vcvarsall.bat and
hasn't been overwritten by appveyor.
Diffstat (limited to '.appveyor.yml')
-rw-r--r-- | .appveyor.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.appveyor.yml b/.appveyor.yml index 1479455..bc3be76 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -43,6 +43,7 @@ install: build_script: - cmd: echo No build step. + - cmd: if %backend%==ninja ( "C:\python34\ninja.exe" --version ) else ( MSBuild /version & echo. ) test_script: - cmd: echo Running tests for %arch% and %compiler% with the %backend% backend |