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