forked from ben-marshall/verilog-parser
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.travis.yml
38 lines (30 loc) · 778 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
35
36
37
38
language:
- cpp
compiler:
- gcc
os:
- linux
install:
- sudo apt-get update -qq
- sudo apt-get install -qq flex build-essential lcov
- wget http://mirrors.kernel.org/ubuntu/pool/main/b/bison/bison_3.0.4.dfsg-1_amd64.deb
- wget http://ftp.us.debian.org/debian/pool/main/b/bison/libbison-dev_3.0.4.dfsg-1_amd64.deb
- sudo dpkg -i libbison-dev_3.0.4.dfsg-1_amd64.deb
- sudo dpkg -i bison_3.0.4.dfsg-1_amd64.deb
- sudo pip install cpp-coveralls
before_script:
- make setup
script:
- make debug
- make release
- make coverage
- make test-debug
- make test-release
- make test-coverage
after_success:
- echo "Success"
- coveralls -b ./build/coverage/src/CMakeFiles/verilogparser.dir/
after_failure:
- echo "Failure"
after_script:
- echo "Script Finished."