-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
.travis.yml
34 lines (29 loc) · 881 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
sudo: false
language: c
compiler:
- gcc
- clang
# Change this to your needs
env:
global:
# The next declaration is the encrypted COVERITY_SCAN_TOKEN, created
# via the "travis encrypt" command using the project repo's public key
- secure: "lftSf6purdbpJsvCuH8P8uEEEl5t1EEMH+PI2xQ32Gs6hZwp84mcLOhjzvQ3d7vvItEQhFYc0/DZTVqXGZ9V++cZI8ls6EIGmt+CrNjWps5MQdLsYYIunQvh5ajlZyH+UvRPvY//o00Rpu0kLSskoFAY2wT06wIep2VL952McOk="
#addons:
# coverity_scan:
# project:
# name: "rswinkle/C_Interpreter"
# description: "Build submitted via Travis CI"
# notification_email: [email protected]
# build_command_prepend: "cd build/; make clean"
# build_command: "make -j2"
# branch_pattern: master
addons:
apt:
sources:
packages:
- valgrind
script:
- cd build/ && make -j2
- ../runtests.py
- ../run_valgrind_tests.py