9177155c79
This patch adds the optional IMAGE env variable to set the base image and adds nightly builds to Travis CI.
14 lines
367 B
YAML
14 lines
367 B
YAML
language: bash
|
|
services: docker
|
|
|
|
env:
|
|
- IMAGE=sentry:9.1
|
|
- IMAGE=getsentry/sentry:git
|
|
|
|
script:
|
|
- ./install.sh
|
|
- docker-compose run --rm web createuser --superuser --email test@sentry.io --password test123TEST
|
|
- docker-compose up -d
|
|
- timeout 60 bash -c 'until $(curl -Isf -o /dev/null http://localhost:9000); do printf '.'; sleep 0.5; done'
|
|
- ./test.sh
|