aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/travis-build.sh
diff options
context:
space:
mode:
authorKevin O'Connor <kevin@koconnor.net>2020-10-30 15:14:39 -0400
committerKevin O'Connor <kevin@koconnor.net>2020-10-30 15:30:48 -0400
commitfd973acd34175d3bc9349db6f3101b927e33f390 (patch)
treee42cab7e9005edda20a57ad99819859da36756dc /scripts/travis-build.sh
parent33a2d48888e685fb832ea9e3e30b2df218ab424b (diff)
downloadkutter-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-build.sh')
-rwxr-xr-xscripts/travis-build.sh67
1 files changed, 0 insertions, 67 deletions
diff --git a/scripts/travis-build.sh b/scripts/travis-build.sh
deleted file mode 100755
index 913a2aa0..00000000
--- a/scripts/travis-build.sh
+++ /dev/null
@@ -1,67 +0,0 @@
-#!/bin/bash
-# Test script for travis-ci.org continuous integration.
-
-# Stop script early on any error; check variables
-set -eu
-
-# Paths to tools installed by travis-install.sh
-MAIN_DIR=${PWD}
-BUILD_DIR=${PWD}/travis_build
-export PATH=${BUILD_DIR}/pru-gcc/bin:${PATH}
-PYTHON=${BUILD_DIR}/python-env/bin/python
-
-
-######################################################################
-# Travis CI helpers
-######################################################################
-
-start_test()
-{
- echo "::group::=============== $1 $2"
- set -x
-}
-
-finish_test()
-{
- set +x
- echo "=============== Finished $2"
- echo "::endgroup::"
-}
-
-
-######################################################################
-# Check for whitespace errors
-######################################################################
-
-start_test check_whitespace "Check whitespace"
-./scripts/check_whitespace.sh
-finish_test check_whitespace "Check whitespace"
-
-
-######################################################################
-# Run compile tests for several different MCU types
-######################################################################
-
-DICTDIR=${BUILD_DIR}/dict
-mkdir -p ${DICTDIR}
-
-for TARGET in test/configs/*.config ; do
- start_test mcu_compile "$TARGET"
- make clean
- make distclean
- unset CC
- cp ${TARGET} .config
- make olddefconfig
- make V=1
- finish_test mcu_compile "$TARGET"
- cp out/klipper.dict ${DICTDIR}/$(basename ${TARGET} .config).dict
-done
-
-
-######################################################################
-# Verify klippy host software
-######################################################################
-
-start_test klippy "Test invoke klippy"
-$PYTHON scripts/test_klippy.py -d ${DICTDIR} test/klippy/*.test
-finish_test klippy "Test invoke klippy"