From 6cfc27d3107aff250f329e53977c3089ccd21aca Mon Sep 17 00:00:00 2001 From: Steffen Jaeckel Date: Tue, 28 Feb 2017 21:19:27 +0100 Subject: [PATCH] add EASY build to tests --- .travis.yml | 4 ++++ testme.sh | 3 +++ 2 files changed, 7 insertions(+) diff --git a/.travis.yml b/.travis.yml index 88d7fe7..287a585 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,6 +12,10 @@ env: BUILDSCRIPT="run.sh" BUILDNAME="STOCK" BUILDOPTIONS=" " + - | + BUILDSCRIPT="run.sh" + BUILDNAME="EASY" + BUILDOPTIONS="-DLTC_EASY" - | BUILDSCRIPT="run.sh" BUILDNAME="SMALL" diff --git a/testme.sh b/testme.sh index 873ad45..d50fae5 100755 --- a/testme.sh +++ b/testme.sh @@ -13,6 +13,9 @@ echo "date="`date` # stock build bash run.sh "STOCK" " " "$1" "$2" "$3" || exit 1 +# EASY build +bash run.sh "EASY" "-DLTC_EASY" "$1" "$2" "$3" || exit 1 + # SMALL code bash run.sh "SMALL" "-DLTC_SMALL_CODE" "$1" "$2" "$3" || exit 1