forked from PatWie/CppNumericalSolvers
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
35 lines (27 loc) · 746 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
dist: trusty
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- wget
- pkg-config
- g++
- g++-4.9
- g++-5
- pkg-config
- zip
- zlib1g-dev
- unzip
before_install:
- wget https://github.com/bazelbuild/bazel/releases/download/0.4.4/bazel-0.4.4-installer-linux-x86_64.sh
- wget https://github.com/bazelbuild/bazel/releases/download/0.4.4/bazel-0.4.4-installer-linux-x86_64.sh.sha256
- sha256sum -c bazel-0.4.4-installer-linux-x86_64.sh.sha256
- chmod +x bazel-0.4.4-installer-linux-x86_64.sh
- ./bazel-0.4.4-installer-linux-x86_64.sh --user
- export PATH="$PATH:$HOME/bin"
script:
- bazel run verify
- python lint.py
notifications:
email: false