mirror of
				https://github.com/iv-org/invidious.git
				synced 2025-11-03 13:48:29 -06:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			1011 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			1011 B
		
	
	
	
		
			YAML
		
	
	
	
	
	
dist: bionic
 | 
						|
 | 
						|
jobs:
 | 
						|
  include:
 | 
						|
    - stage: build
 | 
						|
      # TODO: Shallowly clone again once the .git folder is no longer required for building
 | 
						|
      git:
 | 
						|
        depth: false
 | 
						|
      language: crystal
 | 
						|
      crystal: latest
 | 
						|
      before_install:
 | 
						|
        - shards update
 | 
						|
        - shards install
 | 
						|
      install:
 | 
						|
        - crystal build --warnings all --error-on-warnings src/invidious.cr
 | 
						|
      script:
 | 
						|
        - crystal tool format --check
 | 
						|
        - crystal spec
 | 
						|
 | 
						|
    - stage: build_docker
 | 
						|
      # TODO: Shallowly clone again once the .git folder is no longer required for building
 | 
						|
      git:
 | 
						|
        depth: false
 | 
						|
      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
 |