diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2020-10-30 15:14:39 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2020-10-30 15:30:48 -0400 |
commit | fd973acd34175d3bc9349db6f3101b927e33f390 (patch) | |
tree | e42cab7e9005edda20a57ad99819859da36756dc /scripts/travis-install.sh | |
parent | 33a2d48888e685fb832ea9e3e30b2df218ab424b (diff) | |
download | kutter-fd973acd34175d3bc9349db6f3101b927e33f390.tar.gz kutter-fd973acd34175d3bc9349db6f3101b927e33f390.tar.xz kutter-fd973acd34175d3bc9349db6f3101b927e33f390.zip |
build-test: Remove references to "travis" in build tests
Use "ci-build.sh" "ci-install.sh" and similar, as travis-ci is no
longer being used.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/travis-install.sh')
-rwxr-xr-x | scripts/travis-install.sh | 46 |
1 files changed, 0 insertions, 46 deletions
diff --git a/scripts/travis-install.sh b/scripts/travis-install.sh deleted file mode 100755 index 0bb1ff6d..00000000 --- a/scripts/travis-install.sh +++ /dev/null @@ -1,46 +0,0 @@ -#!/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 -CACHE_DIR=${PWD}/travis_cache -mkdir -p ${BUILD_DIR} ${CACHE_DIR} - - -###################################################################### -# Install (or build) pru gcc -###################################################################### - -echo -e "\n\n=============== Install embedded pru gcc\n\n" -PRU_FILE=${CACHE_DIR}/gnupru.tar.gz -PRU_DIR=${BUILD_DIR}/pru-gcc - -if [ ! -f ${PRU_FILE} ]; then - cd ${BUILD_DIR} - git config --global user.email "you@example.com" - git config --global user.name "Your Name" - git clone https://github.com/dinuxbg/gnupru -b 2018.03-beta-rc3 --depth 1 - cd gnupru - export PREFIX=${PRU_DIR} - ./download-and-patch.sh 2>&1 | pv -nli 30 > ${BUILD_DIR}/gnupru-build.log - ./build.sh 2>&1 | pv -nli 30 >> ${BUILD_DIR}/gnupru-build.log - cd ${BUILD_DIR} - tar cfz ${PRU_FILE} pru-gcc/ -else - cd ${BUILD_DIR} - tar xfz ${PRU_FILE} -fi - - -###################################################################### -# Create python virtualenv environment -###################################################################### - -echo -e "\n\n=============== Install python virtualenv\n\n" -cd ${MAIN_DIR} -virtualenv -p python2 ${BUILD_DIR}/python-env -${BUILD_DIR}/python-env/bin/pip install -r ${MAIN_DIR}/scripts/klippy-requirements.txt |