diff options
author | Michael Jones <jonesmz@users.noreply.github.com> | 2019-08-13 17:08:42 (GMT) |
---|---|---|
committer | Jan Niklas Hasse <jhasse@bixense.com> | 2019-08-13 17:08:42 (GMT) |
commit | 0dfa8a48eb9308a95d5574aa1786700b2cb4ece3 (patch) | |
tree | ba171ef578cd54fd866423b8b94bae53b3069388 /appveyor.yml | |
parent | bd17f236231a58c44f1f5f09ff925aa666d672b7 (diff) | |
download | Ninja-0dfa8a48eb9308a95d5574aa1786700b2cb4ece3.zip Ninja-0dfa8a48eb9308a95d5574aa1786700b2cb4ece3.tar.gz Ninja-0dfa8a48eb9308a95d5574aa1786700b2cb4ece3.tar.bz2 |
Expand the continuous integration coverage to more platforms / operating systems (#1612)
Diffstat (limited to 'appveyor.yml')
-rw-r--r-- | appveyor.yml | 24 |
1 files changed, 23 insertions, 1 deletions
diff --git a/appveyor.yml b/appveyor.yml index 04ed58e..02399fa 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,5 +1,7 @@ version: 1.0.{build} -image: Visual Studio 2017 +image: + - Visual Studio 2017 + - Ubuntu1804 environment: CLICOLOR_FORCE: 1 @@ -7,6 +9,16 @@ environment: matrix: - MSYSTEM: MINGW64 - MSYSTEM: MSVC + - MSYSTEM: LINUX + +matrix: + exclude: + - image: Visual Studio 2017 + MSYSTEM: LINUX + - image: Ubuntu1804 + MSYSTEM: MINGW64 + - image: Ubuntu1804 + MSYSTEM: MSVC for: - @@ -37,4 +49,14 @@ for: python misc/ninja_syntax_test.py + - matrix: + only: + - image: Ubuntu1804 + build_script: + - ./configure.py --bootstrap + - ./ninja all + - ./ninja_test + - misc/ninja_syntax_test.py + - misc/output_test.py + test: off |