2018-11-17 17:23:28 +00:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2019-08-13 17:08:42 +00:00
|
|
|
dist: precise
|
2018-11-17 17:23:28 +00:00
|
|
|
compiler: gcc
|
|
|
|
- os: linux
|
2019-08-13 17:08:42 +00:00
|
|
|
dist: precise
|
2018-11-17 17:23:28 +00:00
|
|
|
compiler: clang
|
2019-08-13 17:08:42 +00:00
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
|
|
dist: trusty
|
|
|
|
compiler: clang
|
|
|
|
- os: linux
|
|
|
|
dist: xenial
|
|
|
|
compiler: gcc
|
|
|
|
- os: linux
|
|
|
|
dist: xenial
|
|
|
|
compiler: clang
|
|
|
|
- os: osx
|
|
|
|
osx_image: xcode10
|
2018-11-17 17:23:28 +00:00
|
|
|
- os: osx
|
2019-08-13 17:08:42 +00:00
|
|
|
osx_image: xcode10.1
|
2016-01-10 13:35:45 +00:00
|
|
|
sudo: false
|
2013-04-22 15:06:37 +00:00
|
|
|
language: cpp
|
2019-08-13 17:08:42 +00:00
|
|
|
before_install:
|
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then brew install re2c ; fi
|
|
|
|
- if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then choco install re2c python ; fi
|
2018-11-05 17:18:51 +00:00
|
|
|
script:
|
2019-04-17 16:04:28 +00:00
|
|
|
- ./misc/ci.py
|
2019-08-19 07:57:56 +00:00
|
|
|
- python3 configure.py --bootstrap
|
2018-11-05 17:18:51 +00:00
|
|
|
- ./ninja all
|
|
|
|
- ./ninja_test --gtest_filter=-SubprocessTest.SetWithLots
|
|
|
|
- ./misc/ninja_syntax_test.py
|
|
|
|
- ./misc/output_test.py
|