From 5cd6d363d467db79430f2b9c635618a19a2ce863 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Tue, 11 Feb 2020 12:32:59 +0100 Subject: [PATCH] travis: Move the hardware dir one level up Signed-off-by: Gergely Nagy --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index 8d6e09c4..28f0564c 100644 --- a/.travis.yml +++ b/.travis.yml @@ -8,13 +8,13 @@ addons: packages: - shellcheck install: - - git clone --depth 1 --recurse-submodules https://github.com/keyboardio/Kaleidoscope-Bundle-Keyboardio hardware/keyboardio + - git clone --depth 1 --recurse-submodules https://github.com/keyboardio/Kaleidoscope-Bundle-Keyboardio ../hardware/keyboardio ## We delete the Bundle's version of Kaleidoscope, and symlink ourselves in. ## This makes sure we're using the current version of the library. - - rm -rf hardware/keyboardio/avr/libraries/Kaleidoscope - - ln -s $(pwd) hardware/keyboardio/avr/libraries/Kaleidoscope + - rm -rf ../hardware/keyboardio/avr/libraries/Kaleidoscope + - ln -s $(pwd) ../hardware/keyboardio/avr/libraries/Kaleidoscope script: - - make travis-test KALEIDOSCOPE_TEMP_PATH=$(pwd)/.kaleidoscope-build-cache BOARD_HARDWARE_PATH=$(pwd)/hardware + - make travis-test KALEIDOSCOPE_TEMP_PATH=$(pwd)/.kaleidoscope-build-cache BOARD_HARDWARE_PATH=$(pwd)/../hardware notifications: email: on_success: change