-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path.travis.yml
56 lines (50 loc) · 1.45 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
# Copyright (C) 2010-2018 CEA/DAM
# Copyright (C) 2010-2018 Laurent Nguyen <[email protected]>
#
# This file is part of HP2P.
#
# This software is governed by the CeCILL-C license under French law and
# abiding by the rules of distribution of free software. You can use,
# modify and/ or redistribute the software under the terms of the CeCILL-C
# license as circulated by CEA, CNRS and INRIA at the following URL
# "http://www.cecill.info".
# \file .travis.yml
# \author Laurent Nguyen <[email protected]>
# \version 3.2
# \date 01 February 2018
# \brief Travis file for CI (see travis-ci.org)
#
# \details No
language: cpp
matrix:
include:
- env: TESTNAME="OMPI"
addons:
apt:
packages:
- openmpi-common
- openmpi-bin
- libopenmpi-dev
- python
compiler: gcc
before_script:
- export OMPI_CC=$CC
- export OMPI_CXX=$CXX
- mpicc --version
- mpic++ --version
- env: TESTNAME="OMPI"
addons:
apt:
packages:
- openmpi-common
- openmpi-bin
- libopenmpi-dev
- python
compiler: clang
before_script:
- export OMPI_CC=$CC
- export OMPI_CXX=$CXX
- mpicc --version
- mpic++ --version
install: true
script: ./autogen.sh && ./configure --prefix=$HOME/hp2p CXX=mpic++ && make && make install