-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml_0
92 lines (82 loc) · 1.7 KB
/
.travis.yml_0
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
#
# Copyright (c) 2019 Carnegie Mellon University,
# Copyright (c) 2019 Triad National Security, LLC, as operator of
# Los Alamos National Laboratory.
#
# All rights reserved.
#
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. See the AUTHORS file for names of contributors.
#
language: cpp
sudo: required
dist: xenial
compiler:
- gcc
os:
- linux
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- automake
- libboost-dev
- libibverbs-dev
- librdmacm-dev
- libopenmpi-dev
- libpapi-dev
- libnuma-dev
- g++-4.6
- g++-4.8
- g++-5
- g++-6
- g++-7
- g++-8
- g++-9
env:
global:
- GIT_SSL_NO_VERIFY=true
matrix:
- GCC=4.6
- GCC=4.8
- GCC=5
- GCC=6
- GCC=7
- GCC=8
- GCC=9
install:
- export CXX="g++-${GCC}"
- export CC="gcc-${GCC}"
before_script:
- ${CXX} --version
- ${CC} --version
- automake --version
- cmake --version
- git --version
script:
- date
- mkdir -p /tmp/deltafs
- git lfs pull --include "cache.0/ch-placement*"
- git lfs pull --include "cache.0/bmi*"
- cd cache
- ln -fs ../cache.0/ch-placement* .
- ln -fs ../cache.0/bmi* .
- ls -l
- cd ..
- >
cmake --verbose=1 -DCMAKE_C_COMPILER=`which $CC` -DCMAKE_CXX_COMPILER=`which $CXX` \
-DMPI_C_COMPILER=`which mpicc` -DMPI_CXX_COMPILER=`which mpicxx` \
-DCMAKE_INSTALL_PREFIX=/tmp/deltafs \
-DMERCURY_OPA=TRUE \
-DUMBRELLA_BUILD_TESTS=OFF \
-DUMBRELLA_SKIP_TESTS=ON \
.
- make
- date
git:
lfs_skip_smudge: true
submodules: false
branches:
only:
- master