From d3565866ef823f9d80d7703ee66b9c896286e56a Mon Sep 17 00:00:00 2001 From: marcoveeneman Date: Tue, 13 Mar 2018 20:26:31 +0100 Subject: Try to enable building the LwIP demo on Travis-CI --- tools/travis/script.sh | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'tools') diff --git a/tools/travis/script.sh b/tools/travis/script.sh index 103ccc1..b96427d 100644 --- a/tools/travis/script.sh +++ b/tools/travis/script.sh @@ -4,6 +4,10 @@ set -ex export PATH=/tmp/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH +pushd ../ChibiOS-RT/ext +7z e lwip-2.0.3-patched.7z +popd + git checkout -- . git clean -xfd make -C demos/TIVA/RT-TM4C123G-LAUNCHPAD @@ -12,10 +16,9 @@ git checkout -- . git clean -xfd make -C demos/TIVA/RT-TM4C1294-LAUNCHPAD -# This demo needs LWIP, it is disabled for now. -# git checkout -- . -# git clean -xfd -# make -C demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP +git checkout -- . +git clean -xfd +make -C demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP git checkout -- . git clean -xfd -- cgit v1.2.3 From cb7a4d2a2c63a86a28a95a42497933a88e771f29 Mon Sep 17 00:00:00 2001 From: marcoveeneman Date: Wed, 14 Mar 2018 07:31:08 +0100 Subject: Fixed pushd popd --- tools/travis/script.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'tools') diff --git a/tools/travis/script.sh b/tools/travis/script.sh index b96427d..8b53ff7 100644 --- a/tools/travis/script.sh +++ b/tools/travis/script.sh @@ -4,9 +4,9 @@ set -ex export PATH=/tmp/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH -pushd ../ChibiOS-RT/ext +cd ../ChibiOS-RT/ext 7z e lwip-2.0.3-patched.7z -popd +cd - git checkout -- . git clean -xfd -- cgit v1.2.3 From 43e00a4d57d3789e1e54d5204e17e8ea904dc41f Mon Sep 17 00:00:00 2001 From: marcoveeneman Date: Wed, 14 Mar 2018 07:42:17 +0100 Subject: Extract with full paths --- tools/travis/script.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tools') diff --git a/tools/travis/script.sh b/tools/travis/script.sh index 8b53ff7..e70b114 100644 --- a/tools/travis/script.sh +++ b/tools/travis/script.sh @@ -5,7 +5,7 @@ set -ex export PATH=/tmp/gcc-arm-none-eabi-4_9-2015q3/bin:$PATH cd ../ChibiOS-RT/ext -7z e lwip-2.0.3-patched.7z +7z x lwip-2.0.3-patched.7z cd - git checkout -- . -- cgit v1.2.3