forked from StanfordLegion/task-bench
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
68 lines (68 loc) · 1.7 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
language: cpp
sudo: required
dist: bionic
os:
- linux
compiler:
- gcc
- clang
env:
global:
- DEBUG=1
# Legion flags
# - WARN_AS_ERROR=1
- REALM_SYNTHETIC_CORE_MAP=""
- REALM_BACKTRACE=1
- CC_FLAGS="-Wno-unused-command-line-argument"
# Disable features by default, specify explicit what to use in each build
- DEFAULT_FEATURES=0
matrix:
- TASKBENCH_USE_MPI=1
- USE_MPI_OPENMP=1
- USE_LEGION=1 # USE_GASNET=1 CONDUIT=mpi
- USE_PYGION=1
- USE_REGENT=1
- USE_REALM=1 # USE_GASNET=1 CONDUIT=mpi
- USE_STARPU=1 TASKBENCH_USE_HWLOC=1
- USE_PARSEC=1 TASKBENCH_USE_HWLOC=1
- USE_CHARM=1
- USE_CHAPEL=1
- USE_X10=1
- USE_OPENMP=1
- USE_SPARK=1
- USE_OMPSS=1
- USE_OMPSS2=1 TASKBENCH_USE_HWLOC=1
- USE_SWIFT=1
- USE_TENSORFLOW=1
- USE_DASK=1
matrix:
exclude:
- compiler: clang
env: USE_PARSEC=1 TASKBENCH_USE_HWLOC=1
- compiler: clang
env: USE_OMPSS=1
- compiler: clang
env: USE_OMPSS2=1 TASKBENCH_USE_HWLOC=1
before_install:
- |
if [[ "$(uname)" = "Linux" ]]; then
sudo apt-get update -qq
sudo apt-get install -qq mpich libmpich-dev libpcre3-dev binutils-dev
if [[ $USE_CHAPEL -eq 1 || $USE_REGENT -eq 1 ]]; then
sudo apt-get install -qq clang-6.0 libclang-6.0-dev llvm-6.0-dev libedit-dev
fi
if [[ $USE_OMPSS2 -eq 1 ]]; then
sudo apt-get install -qq libnuma-dev gperf libboost1.65-dev
fi
if [[ $USE_PARSEC -eq 1 ]]; then
sudo snap install cmake --classic
export PATH=/snap/bin:$PATH
cmake --version
fi
fi
install:
- export CCACHE_BASEDIR=$PWD
- ./get_deps.sh
script:
- ./build_all.sh
- ./test_all.sh