diff options
-rw-r--r-- | .travis.yml | 8 | ||||
-rwxr-xr-x | dist/travis-ci.sh | 15 |
2 files changed, 16 insertions, 7 deletions
diff --git a/.travis.yml b/.travis.yml index db9feb8..22b042e 100644 --- a/.travis.yml +++ b/.travis.yml @@ -4,10 +4,4 @@ addons: apt: packages: - gnat -script: - - ./configure - - make - - export GHDL=$PWD/ghdl_mcode - - cd testsuite - - gnatmake get_entities - - ./testsuite.sh +script: ./dist/travis-ci.sh diff --git a/dist/travis-ci.sh b/dist/travis-ci.sh new file mode 100755 index 0000000..87b0c46 --- /dev/null +++ b/dist/travis-ci.sh @@ -0,0 +1,15 @@ +#! /bin/sh +# This script is executed in the travis-ci environment. + +# Stop in case of error +set -e + +# Build +./configure +make + +# Test +export GHDL=$PWD/ghdl_mcode +cd testsuite +gnatmake get_entities +./testsuite.sh |