From b60fab51bb92c86f185673c270f0121d7caafcd8 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 20 Jan 2020 14:06:18 +0100 Subject: [PATCH 1/2] 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 From 5062332358ead1473064e392b3e52bb9cb4768a9 Mon Sep 17 00:00:00 2001 From: Gergely Nagy Date: Mon, 20 Jan 2020 14:45:33 +0100 Subject: [PATCH 2/2] Update build-tools to latest master Together with the previous commit, this fixes #27. Signed-off-by: Gergely Nagy --- build-tools | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-tools b/build-tools index d23b5bd..97c992b 160000 --- a/build-tools +++ b/build-tools @@ -1 +1 @@ -Subproject commit d23b5bd10d0cc8c2d66c773d6d2754de083c2621 +Subproject commit 97c992b1fea1b567edd2f3e8a223f0cc9c4f3848