This repository has been archived by the owner on Jun 8, 2021. It is now read-only.
forked from nest/nest-simulator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
234 lines (217 loc) · 8.29 KB
/
.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
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
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
# .travis.yaml
#
# This file is part of NEST.
#
# Copyright (C) 2004 The NEST Initiative
#
# NEST is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 2 of the License, or
# (at your option) any later version.
#
# NEST is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with NEST. If not, see <http://www.gnu.org/licenses/>.
# This is the Travis CI top-level script to setup and run the NEST
# build and test environment.
language: python
# Using the Sudo-enabled Ubuntu Xenial (16.04 LTS).
sudo: required
dist: xenial
stages:
- Staticcheck
- MPI-Threading-Python
- Python-Full-build
- Clang7
- OsX
# list of build stages to run. Stages with the same name get run in parallel.
jobs:
include:
- stage: Staticcheck
python: 3.6.7
env: xTHREADING=0 xMPI=0 xGSL=0 xLIBNEUROSIM=0 xLTDL=0 xREADLINE=0 xPYTHON=0 xMUSIC=0 xSTATIC_ANALYSIS=1 xRUN_BUILD_AND_TESTSUITE=0 CACHE_NAME=JOB # only static code analysis
- stage: MPI-Threading-Python
python: 3.6.7
env: xTHREADING=0 xMPI=1 xGSL=0 xLIBNEUROSIM=0 xLTDL=1 xREADLINE=1 xPYTHON=0 xMUSIC=0 xSTATIC_ANALYSIS=0 xRUN_BUILD_AND_TESTSUITE=1 CACHE_NAME=JOB # only MPI
- stage: MPI-Threading-Python
python: 3.6.7
env: xTHREADING=1 xMPI=0 xGSL=0 xLIBNEUROSIM=0 xLTDL=1 xREADLINE=1 xPYTHON=0 xMUSIC=0 xSTATIC_ANALYSIS=0 xRUN_BUILD_AND_TESTSUITE=1 CACHE_NAME=JOB # only threading
- stage: MPI-Threading-Python
python: 3.6.7
env: xTHREADING=1 xMPI=0 xGSL=0 xLIBNEUROSIM=0 xLTDL=0 xREADLINE=0 xPYTHON=1 xMUSIC=0 xSTATIC_ANALYSIS=0 xRUN_BUILD_AND_TESTSUITE=1 CACHE_NAME=JOB # Python & Threading
- stage: MPI-Threading-Python
python: 3.6.7
env: xTHREADING=0 xMPI=1 xGSL=0 xLIBNEUROSIM=0 xLTDL=0 xREADLINE=0 xPYTHON=1 xMUSIC=0 xSTATIC_ANALYSIS=0 xRUN_BUILD_AND_TESTSUITE=1 CACHE_NAME=JOB # Python & MPI
- stage: MPI-Threading-Python
python: 3.6.7
env: xTHREADING=0 xMPI=0 xGSL=0 xLIBNEUROSIM=0 xLTDL=0 xREADLINE=0 xPYTHON=1 xMUSIC=0 xSTATIC_ANALYSIS=0 xRUN_BUILD_AND_TESTSUITE=1 CACHE_NAME=JOB # only Python
- stage: Python-Full-build
python: 3.6.7
env: xTHREADING=1 xMPI=1 xGSL=1 xLIBNEUROSIM=1 xLTDL=1 xREADLINE=1 xPYTHON=1 xMUSIC=1 xSTATIC_ANALYSIS=0 xRUN_BUILD_AND_TESTSUITE=1 CACHE_NAME=JOB # full
- stage: Python-Full-build
python: 2.7.13
env: xTHREADING=1 xMPI=1 xGSL=1 xLIBNEUROSIM=1 xLTDL=1 xREADLINE=1 xPYTHON=1 xMUSIC=1 xSTATIC_ANALYSIS=0 xRUN_BUILD_AND_TESTSUITE=1 CACHE_NAME=JOB # full
- stage: Clang7
language: cpp
env: MATRIX_EVAL="CC=clang-7 && CXX=clang++-7" xRUN_BUILD_AND_TESTSUITE=1
- stage: OsX
os: osx
osx_image: xcode10.3 # Python 3.7.5 running on macOS 10.14.4
language: shell # language 'python' result in errors on macOS
env: xTHREADING=1 xMPI=0 xGSL=1 xLIBNEUROSIM=0 xLTDL=1 xREADLINE=1 xPYTHON=1 xMUSIC=0 xSTATIC_ANALYSIS=0 xRUN_BUILD_AND_TESTSUITE=1 CACHE_NAME=JOB # Without MUSIC, MPI and Libneurosim
#https://docs.travis-ci.com/user/installing-dependencies#Installing-Packages-with-the-APT-Addon
addons:
apt:
sources:
- r-packages-trusty
- ubuntu-toolchain-r-test
- llvm-toolchain-trusty-7
packages:
- gcc-8
- g++-8
- clang-7
- build-essential
- cmake
- libltdl-dev
- libreadline6-dev
- libncurses5-dev
- libgsl0-dev
- python-all-dev
- ipython
- pkg-config
- openmpi-bin
- libopenmpi-dev
- python-nose
- libpcre3
- libpcre3-dev
- llvm-3.6-dev
- jq
- pep8
- libboost-filesystem-dev
- libboost-regex-dev
- libboost-wave-dev
- libboost-python-dev
- libboost-program-options-dev
- libboost-test-dev
- python-mpi4py
cache:
directory:
- $HOME/.cache
before_install:
- export SOURCEDIR=$PWD
# select the right C++ compiler version (gcc8) -- note that update-alternatives is not available on MacOS
- |
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
ls -lh /usr/bin/g++*
ls -lh /usr/bin/gcc*
ls -lh /usr/bin/c++*
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-8 20
sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-5 10
sudo update-alternatives --auto g++
sudo update-alternatives --list g++
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 20
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 10
sudo update-alternatives --auto gcc
sudo update-alternatives --list gcc
sudo update-alternatives --list c++
sudo update-alternatives --auto c++
g++ --version
/usr/bin/c++ --version
fi
- |
if [ "$xRUN_BUILD_AND_TESTSUITE" = "1" ]; then
echo "+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +"
echo "+ P R E P A R E N E S T B U I L D E N V I R O N M E N T +"
echo "+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +"
echo ${MATRIX_EVAL}
eval "${MATRIX_EVAL}"
cp extras/install_music.sh extras/install_csa-libneurosim.sh $HOME
cd $HOME/build
echo $PATH
# Upgrade pip and setuptools
if [ $TRAVIS_BUILD_STAGE_NAME = "Clang7" ]; then
pyenv install --list
pyenv global 3.6.7
fi
if [ "$TRAVIS_OS_NAME" = "osx" ]; then
brew --version
brew update
brew info python
export PATH="/usr/local/opt/python/libexec/bin:$PATH" # To use homebrew's Python
brew tap brewsci/science
brew tap brewsci/bio
brew install coreutils gsl open-mpi automake autoconf libtool
brew unlink gcc
brew install gcc@8
brew link gcc@8
brew list
brew leaves
brew cask list
fi
if [ "$TRAVIS_OS_NAME" = "linux" ]; then
pip install --upgrade pip setuptools
fi
# Installing additional packages using pip as they only have
# outdated versions in the Travis package whitelist.
# terminaltables is required by parse_travis_log.py to create
# the build summary.
pip install cython scipy matplotlib terminaltables
pip install numpy==1.16.5
fi
install:
- |
if [ "$xRUN_BUILD_AND_TESTSUITE" = "1" ]; then
which cython
cython --version
which python
python --version
which pip
pip list
if [ "$TRAVIS_OS_NAME" = "linux" ]; then which nosetests; nosetests --version; nosetests --plugins; fi
which cmake
cmake --version
echo ${CC}
echo ${CXX}
fi
before_script:
# Change directory back to the NEST source code directory.
- cd $SOURCEDIR
- chmod +x extras/travis_build.sh
script:
- set -o pipefail
- ./extras/travis_build.sh 2>&1 | tee travis_build.sh.log
- |
if [ "$xRUN_BUILD_AND_TESTSUITE" = "1" ]; then
python extras/parse_travis_log.py travis_build.sh.log ;
fi
before_deploy:
- |
if [ "$xRUN_BUILD_AND_TESTSUITE" = "1" ]; then
cd $TRAVIS_BUILD_DIR/build
tar -zcvf reports.tar.gz ./reports
tar -zcvf docs.tar.gz $TRAVIS_BUILD_DIR/result/share/doc/nest/*.*
mkdir -p $TRAVIS_BUILD_DIR/build/artefacts_upload
mv docs.tar.gz $TRAVIS_BUILD_DIR/build/artefacts_upload
mv reports.tar.gz $TRAVIS_BUILD_DIR/build/artefacts_upload
fi
# S3 Deployment (Uploading the Travis CI build artefacts to Amazon S3).
deploy:
provider: s3
access_key_id:
secure: $ARTIFACTS_KEY
secret_access_key:
secure: $ARTIFACTS_SECRET
bucket: "nest-travis-artefacts"
region: eu-central-1
skip_cleanup: true
on:
repo: nest/nest-simulator
branch: master
condition: xRUN_BUILD_AND_TESTSUITE = 1
local-dir: "$TRAVIS_BUILD_DIR/build/artefacts_upload"
upload-dir: "$TRAVIS_REPO_SLUG/$TRAVIS_BUILD_NUMBER/$TRAVIS_JOB_NUMBER"
acl: bucket_owner_full_control