-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path.travis.yml_0
64 lines (59 loc) · 1.24 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
#
# 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
jobs:
include:
- os: linux
compiler: gcc
dist: bionic
- os: linux
compiler: clang
dist: bionic
- os: linux
compiler: gcc
dist: xenial
- os: linux
compiler: clang
dist: xenial
- os: linux
compiler: gcc
dist: trusty
- os: linux
compiler: clang
dist: trusty
env:
global:
- GIT_SSL_NO_VERIFY=true
addons:
apt:
update: false
packages:
- libsnappy-dev
- librados-dev
script:
- date
- mkdir -p /tmp/pdlfs-common
- mkdir -p bu
- cd bu
- >
cmake -DCMAKE_INSTALL_PREFIX=/tmp/pdlfs-common \
-DCMAKE_CXX_COMPILER=`which $CXX` \
-DCMAKE_C_COMPILER=`which $CC` \
-DPDLFS_RADOS=ON -DPDLFS_SNAPPY=ON \
-DBUILD_SHARED_LIBS=ON \
-DBUILD_TESTS=ON \
..
- make
- ctest -VV --output-on-failure
- date
branches:
only:
- master