mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2022-08-14.git
synced 2024-08-15 00:53:20 +00:00
28 lines
748 B
YAML
28 lines
748 B
YAML
dist: bionic
|
|
|
|
jobs:
|
|
include:
|
|
- stage: build
|
|
language: crystal
|
|
crystal: latest
|
|
before_install:
|
|
- shards update
|
|
- shards install
|
|
install:
|
|
- crystal build --error-on-warnings src/invidious.cr
|
|
script:
|
|
- crystal tool format --check
|
|
- 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
|