diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2018-06-28 15:03:41 -0400 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2018-06-28 15:03:41 -0400 |
commit | 52ab93be6d083534dd042274da968db5e41aed03 (patch) | |
tree | ab28bee2d7678430a931a1b82d32669377fc3ec3 /scripts/travis-build.sh | |
parent | 640169310ff5be35ad31ff1869e7ebbfc9d334ee (diff) | |
download | kutter-52ab93be6d083534dd042274da968db5e41aed03.tar.gz kutter-52ab93be6d083534dd042274da968db5e41aed03.tar.xz kutter-52ab93be6d083534dd042274da968db5e41aed03.zip |
build: Collect travis build files travis build specific directories
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'scripts/travis-build.sh')
-rwxr-xr-x | scripts/travis-build.sh | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/scripts/travis-build.sh b/scripts/travis-build.sh index 866fb8dc..1244cb2a 100755 --- a/scripts/travis-build.sh +++ b/scripts/travis-build.sh @@ -5,8 +5,10 @@ set -eux # Paths to tools installed by travis-install.sh -export PATH=${PWD}/gcc-arm-none-eabi-7-2017-q4-major/bin:${PATH} -PYTHON=${PWD}/python-env/bin/python +MAIN_DIR=${PWD} +BUILD_DIR=${PWD}/travis_build +export PATH=${BUILD_DIR}/gcc-arm-none-eabi-7-2017-q4-major/bin:${PATH} +PYTHON=${BUILD_DIR}/python-env/bin/python ###################################################################### @@ -28,7 +30,7 @@ echo "travis_fold:end:check_whitespace" # Run compile tests for several different MCU types ###################################################################### -DICTDIR=${PWD}/dict +DICTDIR=${BUILD_DIR}/dict mkdir -p ${DICTDIR} for TARGET in test/configs/*.config ; do @@ -49,7 +51,7 @@ done # Verify klippy host software ###################################################################### -HOSTDIR=${PWD}/hosttest +HOSTDIR=${BUILD_DIR}/hosttest mkdir -p ${HOSTDIR} echo "travis_fold:start:klippy" |