From b60fab51bb92c86f185673c270f0121d7caafcd8 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 20 Jan 2020 14:06:18 +0100 Subject: [PATCH] travis: Move the hardware directory one level higher Apparently, having the hardware directory within the current directory does not work all that well now, and Arduino fails to find it. Moving it one level higher, outside of the cloned sources, and all is well. This is the major part of the fix for #27. Signed-off-by: Gergely Nagy --- .travis.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.travis.yml b/.travis.yml index b71abbb..cdd4eb8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,10 +3,10 @@ sudo: false os: - linux install: -- mkdir -p hardware/ -- ln -s `pwd` hardware/keyboardio +- mkdir -p ../hardware/ +- ln -s `pwd` ../hardware/keyboardio script: -- make travis-test-all BOARD_HARDWARE_PATH=$(pwd)/hardware +- make travis-test-all BOARD_HARDWARE_PATH=$(pwd)/../hardware branches: except: - gh-pages @@ -20,7 +20,7 @@ notifications: email: on_success: change on_failure: change -cache: +cache: ccache: true directories: - .ccache