13b510fc14
Fix #230.
14 lines
383 B
YAML
14 lines
383 B
YAML
language: bash
|
|
services: docker
|
|
|
|
env:
|
|
- SENTRY_IMAGE=sentry:9.1.2
|
|
- SENTRY_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
|