Skip to content
Snippets Groups Projects
Commit 6b5ec50a authored by Kenneth Reitz's avatar Kenneth Reitz
Browse files

new travis matrix

parent 63810f29
No related branches found
Tags v131
No related merge requests found
......@@ -2,5 +2,8 @@ language: bash
sudo: required
services:
- docker
install: docker pull heroku/cedar:14
script: make test
# install: docker pull heroku/cedar:14
script: ./tests.sh
env:
- STACK=heroku-16
- STACK=cedar-14
\ No newline at end of file
tests.sh 0 → 100755
#!/usr/bin/env sh
if [[ ! "$STACK" ]]; then
echo '$STACK must be set! (heroku-16 | cedar-14)'
exit 1
fi
if [[ "$STACK" == "cedar-14" ]]; then
make test-cedar-14
exit $?
fi
if [[ "$STACK" == "heroku-16" ]]; then
make test-heroku-16
exit $?
fi
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment