invidious/.travis.yml

32 lines
822 B
YAML
Raw Normal View History

dist: bionic
2019-08-09 17:28:04 +00:00
jobs:
include:
- stage: build
# TODO: Shallowly clone again once the .git folder is no longer required for building
git:
depth: false
2019-08-09 17:28:04 +00:00
language: crystal
crystal: latest
before_install:
- shards update
- shards install
install:
- crystal build --warnings all --error-on-warnings src/invidious.cr
2019-08-09 17:28:04 +00:00
script:
- crystal tool format --check
- crystal spec
2019-08-09 17:28:04 +00:00
- stage: build_docker
# TODO: Shallowly clone again once the .git folder is no longer required for building
git:
depth: false
2019-08-09 17:28:04 +00:00
language: minimal
services:
- docker
install:
- docker-compose build
script:
- docker-compose up -d
- while curl -Isf http://localhost:3000; do sleep 1; done