add EASY build to tests

This commit is contained in:
Steffen Jaeckel 2017-02-28 21:19:27 +01:00 committed by Karel Miko
parent 50aedb099c
commit 6cfc27d310
2 changed files with 7 additions and 0 deletions

View File

@ -12,6 +12,10 @@ env:
BUILDSCRIPT="run.sh"
BUILDNAME="STOCK"
BUILDOPTIONS=" "
- |
BUILDSCRIPT="run.sh"
BUILDNAME="EASY"
BUILDOPTIONS="-DLTC_EASY"
- |
BUILDSCRIPT="run.sh"
BUILDNAME="SMALL"

View File

@ -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