mirror of
https://github.com/iv-org/invidious.git
synced 2025-11-03 05:38:30 -06:00
Commit the whole ./lib/ folder which stores the Crystal dependencies. This has a few benefits: - Allows to build the project without a connection to the Internet to retrieve dependencies. - Makes the project resistant against dependency re-tags which might include malicious code.
26 lines
677 B
YAML
26 lines
677 B
YAML
dist: bionic
|
|
|
|
jobs:
|
|
include:
|
|
- stage: build
|
|
language: crystal
|
|
crystal: latest
|
|
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
|