-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
51 lines (45 loc) · 973 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
39
40
41
42
43
44
45
46
47
48
49
50
51
# blocklist
branches:
except:
- scorep_headers
language: generic
sudo: required
dist: bionic
matrix:
include:
- os: linux
env: CXX=g++-5 CC=gcc-5
addons:
apt:
sources:
- sourceline: "ppa:andreasgocht/scorep"
packages:
- scorep
- g++-5
- cmake
- cmake-data
- libunwind8
- libunwind8-dev
# sources:
# - llvm-toolchain-precise-3.8
# - ubuntu-toolchain-r-test
# - george-edison55-precise-backports
- os: linux
env: CXX=clang++-7 CC=clang-7
addons:
apt:
sources:
- sourceline: "ppa:andreasgocht/scorep"
packages:
- scorep
- clang-7
- cmake
- cmake-data
- libunwind8
- libunwind8-dev
before_script:
- mkdir build
- cd build
- cmake ..
script:
- make