-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy path.travis.yml
More file actions
141 lines (131 loc) · 4.22 KB
/
Copy path.travis.yml
File metadata and controls
141 lines (131 loc) · 4.22 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
language: python
os: linux
dist: xenial
matrix:
include:
- addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.9
env: MATRIX_EVAL="CC=gcc-4.9 && CXX=g++-4.9"
before_install:
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.9 50
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.9 50
- addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-5
before_install:
env: MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"
before_install:
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 50
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 50
- addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-6
env: MATRIX_EVAL="CC=gcc-6 && CXX=g++-6"
before_install:
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-6 50
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 50
- addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-7
env: MATRIX_EVAL="CC=gcc-7 && CXX=g++-7"
before_install:
- sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-7 50
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-7 50
script:
- mkdir build && cd build
- cmake .. -DSTATIC_LINKING=FALSE -DSNAB_DEBUG=TRUE -DPYTHON_VERSION_MAJOR=2
- make && make test ARGS=-V
- cmake .. -DSTATIC_LINKING=TRUE -DSNAB_DEBUG=FALSE -DPYTHON_VERSION_MAJOR=2
- make && make test ARGS=-V
after_success:
- pip3 install CppHeaderParser
- python3 ../source/util/generate_bench_json.py
- git clone "https://${GITHUB_TOKEN}@${DEPLOY_ADDRESS}" &>/dev/null
- cd SNABSuite_deploy
- cp ../benchmark benchmark
- cp ../../source/util/benchmark.py benchmark.py
- cp ../benchmarks.json benchmarks.json
- cp -r ../../config/ ./
- cp ../cypress_ext-prefix/src/cypress_ext-build/libBS2CYPRESS.so ./
- git add *
- git commit -m "Update to latest SNABSuite master"
- git push "https://${GITHUB_TOKEN}@${DEPLOY_ADDRESS}" master &>/dev/null
- addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-5.0
packages:
- g++-6
- clang-5.0
env: MATRIX_EVAL="CC=clang-5.0 && CXX=clang++-5.0"
before_install:
export CXX="clang++-5.0" CC="clang-5.0"
sudo export CXX="clang++-5.0" CC="clang-5.0"
- addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-6.0
packages:
- g++-6
- clang-6.0
env: MATRIX_EVAL="CC=clang-6.0 && CXX=clang++-6.0"
before_install:
export CXX="clang++-6.0" CC="clang-6.0"
sudo export CXX="clang++-6.0" CC="clang-6.0"
- addons:
apt:
sources:
- ubuntu-toolchain-r-test
- llvm-toolchain-xenial-4.0
packages:
- g++-6
- clang-4.0
env: MATRIX_EVAL="CC=clang-4.0 && CXX=clang++-4.0"
before_install:
export CXX="clang++-4.0" CC="clang-4.0"
sudo export CXX="clang++-4.0" CC="clang-4.0"
- addons:
apt:
packages:
- doxygen
- doxygen-doc
- doxygen-latex
- doxygen-gui
- graphviz
before_install:
install:
script:
- mkdir build
- doxygen doxygen.conf
deploy:
provider: pages
skip_cleanup: true
local_dir: build/doc/html/
github_token: $GITHUB_TOKEN
on:
branch: master
before_install:
- eval "${MATRIX_EVAL}"
install:
- sudo pip install cython numpy pyNN==0.9.2 requests pyminifier
script:
- mkdir build && cd build
- cmake .. -DSTATIC_LINKING=FALSE -DSNAB_DEBUG=TRUE
- make && make test ARGS=-V
- cmake .. -DSTATIC_LINKING=TRUE -DSNAB_DEBUG=FALSE
- make && make test ARGS=-V