mirror of https://github.com/iv-org/invidious.git
travis: also test Docker build
This commit is contained in:
parent
3de37a61c5
commit
4c6e92eea1
31
.travis.yml
31
.travis.yml
|
@ -1,17 +1,28 @@
|
||||||
language: crystal
|
|
||||||
|
|
||||||
crystal:
|
|
||||||
- latest
|
|
||||||
|
|
||||||
dist: bionic
|
dist: bionic
|
||||||
|
|
||||||
before_install:
|
jobs:
|
||||||
|
include:
|
||||||
|
- stage: build
|
||||||
|
language: crystal
|
||||||
|
crystal: latest
|
||||||
|
before_install:
|
||||||
- shards update
|
- shards update
|
||||||
- shards install
|
- shards install
|
||||||
|
install:
|
||||||
install:
|
|
||||||
- crystal build --error-on-warnings src/invidious.cr
|
- crystal build --error-on-warnings src/invidious.cr
|
||||||
|
script:
|
||||||
script:
|
|
||||||
- crystal tool format --check
|
- crystal tool format --check
|
||||||
- crystal spec
|
- crystal spec
|
||||||
|
|
||||||
|
- stage: build_docker
|
||||||
|
language: minimal
|
||||||
|
services:
|
||||||
|
- docker
|
||||||
|
install:
|
||||||
|
- docker-compose build
|
||||||
|
script:
|
||||||
|
- docker-compose up -d
|
||||||
|
- sleep 15 # Wait for cluster to become ready, TODO: do not sleep
|
||||||
|
- HEADERS="$(curl -I -s http://localhost:3000/)"
|
||||||
|
- STATUS="$(echo $HEADERS | head -n1)"
|
||||||
|
- if [[ "$STATUS" != *"200 OK"* ]]; then echo "$HEADERS"; exit 1; fi
|
||||||
|
|
Loading…
Reference in New Issue