-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtravis-install.sh
executable file
·65 lines (63 loc) · 1.47 KB
/
travis-install.sh
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
#!/bin/bash
set -eu
CI_TARGET_ARCH="${BUILD_ARCH:-$TRAVIS_CPU_ARCH}"
case "$TRAVIS_OS_NAME" in
"linux")
# Architecture-dependent packages.
pkgs=(
libaio-dev
libcunit1-dev
libfl-dev
libgoogle-perftools-dev
libibverbs-dev
libiscsi-dev
libnuma-dev
librbd-dev
librdmacm-dev
libz-dev
)
case "$CI_TARGET_ARCH" in
"x86")
pkgs=("${pkgs[@]/%/:i386}")
pkgs+=(
gcc-multilib
pkg-config:i386
)
;;
"amd64")
pkgs+=(nvidia-cuda-dev)
;;
esac
if [[ $CI_TARGET_ARCH != "x86" ]]; then
pkgs+=(glusterfs-common)
fi
# Architecture-independent packages and packages for which we don't
# care about the architecture.
pkgs+=(
bison
flex
python3
python3-scipy
python3-six
)
sudo apt-get -qq update
sudo apt-get install --no-install-recommends -qq -y "${pkgs[@]}"
# librpma is supported on the amd64 (x86_64) architecture for now
if [[ $CI_TARGET_ARCH == "amd64" ]]; then
# install libprotobuf-c-dev required by librpma_gpspm
sudo apt-get install --no-install-recommends -qq -y libprotobuf-c-dev
# PMDK libraries have to be installed, because
# libpmem is a dependency of the librpma fio engine
ci/travis-install-pmdk.sh
# install librpma from sources from GitHub
ci/travis-install-librpma.sh
fi
;;
"osx")
brew update >/dev/null 2>&1
brew install cunit
pip3 install scipy six
;;
esac
echo "Python3 path: $(type -p python3 2>&1)"
echo "Python3 version: $(python3 -V 2>&1)"