From defeba5d0632726fd5c372e55b28487c0cfc7cff Mon Sep 17 00:00:00 2001 From: marcoveeneman Date: Fri, 2 Mar 2018 18:58:02 +0100 Subject: Removed EXT testhal application from travis build script --- tools/travis/script.sh | 4 ---- 1 file changed, 4 deletions(-) (limited to 'tools/travis/script.sh') diff --git a/tools/travis/script.sh b/tools/travis/script.sh index 457a38f..cb082a3 100644 --- a/tools/travis/script.sh +++ b/tools/travis/script.sh @@ -17,10 +17,6 @@ make -C demos/TIVA/RT-TM4C1294-LAUNCHPAD # git clean -xfd # make -C demos/TIVA/RT-TM4C1294-LAUNCHPAD-LWIP -git checkout -- . -git clean -xfd -make -C testhal/TIVA/TM4C123x/EXT/ - git checkout -- . git clean -xfd make -C testhal/TIVA/TM4C123x/GPT -- cgit v1.2.3 From 1febc19597e880e2ad460573e09ec3cca45a392c Mon Sep 17 00:00:00 2001 From: marcoveeneman Date: Fri, 2 Mar 2018 18:58:34 +0100 Subject: Added PAL testhal application to travis build script --- tools/travis/script.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'tools/travis/script.sh') diff --git a/tools/travis/script.sh b/tools/travis/script.sh index cb082a3..103ccc1 100644 --- a/tools/travis/script.sh +++ b/tools/travis/script.sh @@ -36,3 +36,7 @@ make -C testhal/TIVA/TM4C123x/SPI git checkout -- . git clean -xfd make -C testhal/TIVA/TM4C123x/WDG + +git checkout -- . +git clean -xfd +make -C testhal/TIVA/multi/PAL -- cgit v1.2.3 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/travis/script.sh') 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/travis/script.sh') 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/travis/script.sh') 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