mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-08 19:21:33 -07:00
c3e685a925
It seems to not be possible to (safely) communicate with a remote builder instance.
29 lines
877 B
YAML
29 lines
877 B
YAML
on:
|
|
push:
|
|
jobs:
|
|
test-build:
|
|
runs-on: docker
|
|
container:
|
|
image: iceshrimp.dev/iceshrimp/ci-env:latest
|
|
options: --volume /opt/iceshrimp-cache/yarn:/iceshrimp-caches/yarn
|
|
services:
|
|
database:
|
|
image: postgres:15
|
|
env:
|
|
POSTGRES_PASSWORD: "test"
|
|
redis:
|
|
image: redis
|
|
steps:
|
|
- name: Clone repository
|
|
run: git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git --branch=${{ github.ref_name }} --depth=1 .
|
|
- name: Install build dependencies
|
|
run: |
|
|
cp -Tr /iceshrimp-caches/yarn .yarn
|
|
yarn --immutable
|
|
rm -rf /iceshrimp-caches/yarn/* && cp -Tr .yarn /iceshrimp-caches/yarn
|
|
- name: Build the shrimp
|
|
run: yarn build:debug
|
|
- name: Test the shrimp
|
|
run: |
|
|
cp .config/ci.yml .config/default.yml
|
|
yarn run migrate
|