2018-11-18 02:23:28 +09:00
|
|
|
matrix:
|
|
|
|
include:
|
|
|
|
- os: linux
|
2019-08-13 12:08:42 -05:00
|
|
|
dist: precise
|
2018-11-18 02:23:28 +09:00
|
|
|
compiler: gcc
|
|
|
|
- os: linux
|
2019-08-13 12:08:42 -05:00
|
|
|
dist: precise
|
2018-11-18 02:23:28 +09:00
|
|
|
compiler: clang
|
2019-08-13 12:08:42 -05: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-18 02:23:28 +09:00
|
|
|
- os: osx
|
2019-08-13 12:08:42 -05:00
|
|
|
osx_image: xcode10.1
|
2016-01-10 05:35:45 -08:00
|
|
|
sudo: false
|
2013-04-22 08:06:37 -07:00
|
|
|
language: cpp
|
2019-08-13 12:08:42 -05: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 18:18:51 +01:00
|
|
|
script:
|
2019-04-17 18:04:28 +02:00
|
|
|
- ./misc/ci.py
|
2019-08-19 09:57:56 +02:00
|
|
|
- python3 configure.py --bootstrap
|
2018-11-05 18:18:51 +01:00
|
|
|
- ./ninja all
|
|
|
|
- ./ninja_test --gtest_filter=-SubprocessTest.SetWithLots
|
|
|
|
- ./misc/ninja_syntax_test.py
|
|
|
|
- ./misc/output_test.py
|