blob: fa3bb50d5a1fff68f12384f8f473a100609015d4 (
plain)
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
|
#!/bin/bash
# Build setup script for travis-ci.org continuous integration testing.
# See travis-build.sh for the actual test steps.
# Stop script early on any error; check variables; be verbose
set -eux
MAIN_DIR=${PWD}
BUILD_DIR=${PWD}/travis_build
DOWNLOAD_DIR=${PWD}/travis_cache
mkdir -p ${BUILD_DIR} ${DOWNLOAD_DIR}
######################################################################
# Install embedded arm gcc
######################################################################
echo "=============== Install embedded arm gcc"
GCC_ARM_URL="https://developer.arm.com/-/media/Files/downloads/gnu-rm/7-2017q4/gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2"
GCC_ARM_SHA="96a029e2ae130a1210eaa69e309ea40463028eab18ba19c1086e4c2dafe69a6a gcc-arm-none-eabi-7-2017-q4-major-linux.tar.bz2"
GCC_ARM_FILE="$(basename ${GCC_ARM_URL})"
cd ${DOWNLOAD_DIR}
if [ ! -f ${GCC_ARM_FILE} ]; then
wget "$GCC_ARM_URL"
fi
FOUND_SHA=`sha256sum "$GCC_ARM_FILE"`
if [ "$FOUND_SHA" != "$GCC_ARM_SHA" ]; then
echo "ERROR: Mismatch on gcc arm sha256"
exit -1
fi
cd ${BUILD_DIR}
tar xf "${DOWNLOAD_DIR}/${GCC_ARM_FILE}"
######################################################################
# Create python virtualenv environment
######################################################################
echo "=============== Install python virtualenv"
cd ${MAIN_DIR}
virtualenv ${BUILD_DIR}/python-env
${BUILD_DIR}/python-env/bin/pip install cffi==1.6.0 pyserial==3.2.1 greenlet==0.4.10
|