diff --git a/.travis.yml b/.travis.yml index a06ab37fb1..3be4fb639d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -59,7 +59,7 @@ matrix: - if: type != cron compiler: "gcc" env: CI_BUILD_TARGET="navigator periph-build" - name: navigator periph-build + name: navigator periph-build replay - if: type != cron compiler: "clang" env: CI_BUILD_TARGET="periph-build" diff --git a/Tools/scripts/build_ci.sh b/Tools/scripts/build_ci.sh index 0e0a4fc520..50f128ddaf 100755 --- a/Tools/scripts/build_ci.sh +++ b/Tools/scripts/build_ci.sh @@ -234,6 +234,18 @@ for t in $CI_BUILD_TARGET; do continue fi + if [ "$t" == "replay" ]; then + echo "Building replay" + $waf configure --board linux --disable-scripting + $way --target tools/Replay + echo "Building AP_DAL standalone test" + $waf configure --board linux --disable-scripting --disable-gcs + $way --target examples/AP_DAL_Standalone + $waf clean + $waf bootloader + continue + fi + if [ "$t" == "configure-all" ]; then echo "Checking configure of all boards" ./Tools/scripts/configure_all.py