blob: 70b1fd09547aba3dc479810c36ef2befa69d7bdd (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
sudo: false
language: cpp
compiler:
- gcc
- clang
script:
- ./configure.py --bootstrap
- ./ninja all
- ./ninja_test --gtest_filter=-SubprocessTest.SetWithLots
- ./misc/ninja_syntax_test.py
- ./misc/output_test.py
|