2020-12-01 20:45:33 +00:00
|
|
|
name: Invidious CI
|
|
|
|
|
2020-12-02 04:33:42 +00:00
|
|
|
on:
|
2021-08-06 07:40:32 +00:00
|
|
|
schedule:
|
|
|
|
- cron: "0 0 * * *" # Every day at 00:00
|
2020-12-02 04:33:42 +00:00
|
|
|
push:
|
2020-12-03 12:06:27 +00:00
|
|
|
branches:
|
|
|
|
- "master"
|
|
|
|
- "api-only"
|
2020-12-02 04:33:42 +00:00
|
|
|
pull_request:
|
|
|
|
branches: "*"
|
2021-06-18 18:17:03 +00:00
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
|
|
|
- LICENCE
|
|
|
|
- TRANSLATION
|
|
|
|
- invidious.service
|
|
|
|
- .git*
|
|
|
|
- .editorconfig
|
|
|
|
|
|
|
|
- screenshots/*
|
|
|
|
- assets/**
|
2021-08-06 09:08:44 +00:00
|
|
|
- locales/*
|
2021-06-18 18:17:03 +00:00
|
|
|
- config/**
|
|
|
|
- .github/ISSUE_TEMPLATE/*
|
|
|
|
- kubernetes/**
|
2020-12-01 20:45:33 +00:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-08-06 07:40:32 +00:00
|
|
|
|
|
|
|
name: "build - crystal: ${{ matrix.crystal }}, stable: ${{ matrix.stable }}"
|
|
|
|
|
|
|
|
continue-on-error: ${{ !matrix.stable }}
|
|
|
|
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
|
|
|
stable: [true]
|
|
|
|
crystal:
|
|
|
|
- 1.0.0
|
2021-08-06 07:40:54 +00:00
|
|
|
- 1.1.1
|
2021-11-17 20:12:58 +00:00
|
|
|
- 1.2.2
|
2021-08-06 07:40:32 +00:00
|
|
|
include:
|
|
|
|
- crystal: nightly
|
|
|
|
stable: false
|
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-02 03:40:13 +00:00
|
|
|
- name: Install Crystal
|
2021-10-15 14:01:03 +00:00
|
|
|
uses: crystal-lang/install-crystal@v1.5.3
|
2021-01-29 17:36:19 +00:00
|
|
|
with:
|
2021-08-06 07:40:32 +00:00
|
|
|
crystal: ${{ matrix.crystal }}
|
|
|
|
|
2020-12-02 03:40:13 +00:00
|
|
|
- name: Cache Shards
|
|
|
|
uses: actions/cache@v2
|
|
|
|
with:
|
|
|
|
path: ./lib
|
|
|
|
key: shards-${{ hashFiles('shard.lock') }}
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-02 03:40:13 +00:00
|
|
|
- name: Install Shards
|
|
|
|
run: |
|
|
|
|
if ! shards check; then
|
|
|
|
shards install
|
|
|
|
fi
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
- name: Run tests
|
|
|
|
run: crystal spec
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
- name: Run lint
|
|
|
|
run: |
|
|
|
|
if ! crystal tool format --check; then
|
|
|
|
crystal tool format
|
2020-12-02 00:32:19 +00:00
|
|
|
git diff
|
2020-12-01 20:45:33 +00:00
|
|
|
exit 1
|
|
|
|
fi
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
- name: Build
|
|
|
|
run: crystal build --warnings all --error-on-warnings --error-trace src/invidious.cr
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
build-docker:
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
runs-on: ubuntu-latest
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
- name: Build Docker
|
2021-09-01 11:24:17 +00:00
|
|
|
run: docker-compose build --build-arg release=0
|
|
|
|
|
|
|
|
- name: Run Docker
|
2020-12-01 20:45:33 +00:00
|
|
|
run: docker-compose up -d
|
2021-08-06 07:40:32 +00:00
|
|
|
|
2020-12-01 20:45:33 +00:00
|
|
|
- name: Test Docker
|
|
|
|
run: while curl -Isf http://localhost:3000; do sleep 1; done
|
|
|
|
|
2021-08-10 05:34:52 +00:00
|
|
|
build-docker-arm64:
|
|
|
|
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
|
|
|
|
- name: Set up QEMU
|
|
|
|
uses: docker/setup-qemu-action@v1
|
|
|
|
with:
|
|
|
|
platforms: arm64
|
|
|
|
|
|
|
|
- name: Set up Docker Buildx
|
|
|
|
uses: docker/setup-buildx-action@v1
|
|
|
|
|
|
|
|
- name: Build Docker ARM64 image
|
|
|
|
uses: docker/build-push-action@v2
|
|
|
|
with:
|
|
|
|
context: .
|
|
|
|
file: docker/Dockerfile.arm64
|
|
|
|
platforms: linux/arm64/v8
|
2021-09-01 11:24:17 +00:00
|
|
|
build-args: release=0
|
2021-08-10 05:34:52 +00:00
|
|
|
|
|
|
|
- name: Test Docker
|
|
|
|
run: while curl -Isf http://localhost:3000; do sleep 1; done
|
|
|
|
|
|
|
|
|