aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 568dffa7990f03a25dc83673368f6595620c9955 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
dist: xenial
language: c
install:
 - git clone https://github.com/ninja-build/ninja.git /tmp/ninja
 - pushd /tmp/ninja
 - git checkout release
 - python configure.py --bootstrap
 - mkdir -p $HOME/.local/bin
 - install -m 755 /tmp/ninja/ninja $HOME/.local/bin/ninja
 - popd
 - export PATH=$HOME/.local/bin:$PATH
 - pip install --user six
 - pip install --user git+https://github.com/Maratyszcza/confu
before_script:
 - confu setup
 - ./configure.py
 - ninja
script:
 - ninja test
 - ninja bench
addons:
  apt:
    packages:
    - python-pip