This repository has been archived by the owner on Apr 30, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
87 lines (87 loc) · 2.01 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
sudo: false
language: c
os:
# osx starts faster because homebrew installs beat building from source
- osx
- linux
compiler:
# nothing in ARMCI-MPI should be compiler-dependent...
- clang
- gcc
addons:
apt:
packages:
- hwloc
matrix:
allow_failures:
env:
#
# Test the default config since that is what Debian users will get.
#
- MPI_IMPL=mpich
- MPI_IMPL=openmpi
#
# MPICH
#
# with datatypes
- MPI_IMPL=mpich
ARMCI_STRIDED_METHOD=DIRECT
ARMCI_IOV_METHOD=DIRECT
ARMCI_USE_WIN_ALLOCATE=0
- MPI_IMPL=mpich
ARMCI_STRIDED_METHOD=DIRECT
ARMCI_IOV_METHOD=DIRECT
ARMCI_USE_WIN_ALLOCATE=1
# without datatypes
- MPI_IMPL=mpich
ARMCI_STRIDED_METHOD=IOV
ARMCI_IOV_METHOD=BATCHED
ARMCI_USE_WIN_ALLOCATE=0
- MPI_IMPL=mpich
ARMCI_STRIDED_METHOD=IOV
ARMCI_IOV_METHOD=BATCHED
ARMCI_USE_WIN_ALLOCATE=1
#
# Open-MPI
#
# with datatypes
- MPI_IMPL=openmpi
ARMCI_STRIDED_METHOD=DIRECT
ARMCI_IOV_METHOD=DIRECT
ARMCI_USE_WIN_ALLOCATE=0
- MPI_IMPL=openmpi
ARMCI_STRIDED_METHOD=DIRECT
ARMCI_IOV_METHOD=DIRECT
ARMCI_USE_WIN_ALLOCATE=1
# without datatypes
- MPI_IMPL=openmpi
ARMCI_STRIDED_METHOD=IOV
ARMCI_IOV_METHOD=BATCHED
ARMCI_USE_WIN_ALLOCATE=0
- MPI_IMPL=openmpi
ARMCI_STRIDED_METHOD=IOV
ARMCI_IOV_METHOD=BATCHED
ARMCI_USE_WIN_ALLOCATE=1
# deal with ordering issue
#- MPI_IMPL=openmpi
# ARMCI_STRIDED_METHOD=DIRECT
# ARMCI_IOV_METHOD=DIRECT
# ARMCI_NO_FLUSH_LOCAL=1
# ARMCI_USE_WIN_ALLOCATE=0
#- MPI_IMPL=openmpi
# ARMCI_STRIDED_METHOD=DIRECT
# ARMCI_IOV_METHOD=DIRECT
# ARMCI_NO_FLUSH_LOCAL=1
# ARMCI_USE_WIN_ALLOCATE=1
before_install:
- export TRAVIS_ROOT=$HOME/travis
- mkdir $TRAVIS_ROOT
- sh ./travis/install-autotools.sh $TRAVIS_ROOT
install:
- sh ./travis/install-mpi.sh $TRAVIS_ROOT $MPI_IMPL
script:
- sh ./travis/build-run.sh $TRAVIS_ROOT $MPI_IMPL
after_failure:
- cat ./test-suite.log
- cat ./config.log
- find . -name "*.log" -exec head -n 100 {} ";"