Merge "Bugfix: the API to get result do not work due to can't parse $"
[yardstick.git] / install.sh
1 # install tools
2 apt-get update && apt-get install -y \
3     wget \
4     expect \
5     curl \
6     git \
7     sshpass \
8     qemu-utils \
9     kpartx \
10     libffi-dev \
11     libssl-dev \
12     python \
13     python-dev \
14     libxml2-dev \
15     libxslt1-dev \
16     nginx \
17     uwsgi \
18     uwsgi-plugin-python \
19     python-setuptools && \
20     easy_install -U setuptools
21
22 apt-get -y autoremove && apt-get clean
23
24
25 # fit for arm64
26 source_file=/etc/apt/sources.list
27 sed -i -e 's/^deb \([^/[]\)/deb [arch=amd64] \1/g' "${source_file}"
28 sed -i -e 's/^deb-src /# deb-src /g' "${source_file}"
29
30 sub_source_file=/etc/apt/sources.list.d/yardstick.list
31 touch "${sub_source_file}"
32 echo -e "deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ trusty main universe multiverse restricted
33 deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ trusty-updates main universe multiverse restricted
34 deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ trusty-security main universe multiverse restricted
35 deb [arch=arm64] http://ports.ubuntu.com/ubuntu-ports/ trusty-proposed main universe multiverse restricted" > "${sub_source_file}"
36 echo "vm.mmap_min_addr = 0" > /etc/sysctl.d/mmap_min_addr.conf
37 dpkg --add-architecture arm64
38 apt-get install -y qemu-user-static libc6:arm64
39
40 # install yardstick + dependencies
41 easy_install -U pip
42 pip install -r requirements.txt
43 pip install .