mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
Run a test build on push
This commit is contained in:
parent
6c2380ca3e
commit
023fd63614
1 changed files with 41 additions and 0 deletions
41
.forgejo/workflows/test-build.yaml
Normal file
41
.forgejo/workflows/test-build.yaml
Normal file
|
@ -0,0 +1,41 @@
|
|||
on:
|
||||
- push
|
||||
jobs:
|
||||
test-build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: alpine:3.18
|
||||
options: --volume /opt/iceshrimp-cache/yarn:/iceshrimp-caches/yarn --volume /opt/iceshrimp-cache/cargo:/root/.cargo --volume /opt/iceshrimp-cache/built:/iceshrimp-caches/built --volume /opt/iceshrimp-cache/target:/iceshrimp-caches/target
|
||||
services:
|
||||
database:
|
||||
image: postgres:15
|
||||
env:
|
||||
POSTGRES_PASSWORD: "test"
|
||||
redis:
|
||||
image: redis
|
||||
steps:
|
||||
- name: Set up build environment
|
||||
run: |
|
||||
apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm rust cargo vips
|
||||
corepack enable && corepack prepare yarn@stable --activate
|
||||
- name: Clone repository
|
||||
run: git clone https://iceshrimp.dev/iceshrimp/iceshrimp.git --branch=${{ github.ref_name }} --depth=1 /iceshrimp
|
||||
- name: Install build dependencies
|
||||
run: |
|
||||
cd /iceshrimp
|
||||
cp -Tr /iceshrimp-caches/yarn .yarn
|
||||
yarn
|
||||
rm -rf /iceshrimp-caches/yarn/* && cp -Tr .yarn /iceshrimp-caches/yarn
|
||||
- name: Build the shrimp
|
||||
run: |
|
||||
cd /iceshrimp
|
||||
cp -Trp /iceshrimp-caches/built packages/backend/native-utils/built
|
||||
cp -Trp /iceshrimp-caches/target packages/backend/native-utils/target
|
||||
yarn build
|
||||
rm -rf /iceshrimp-caches/built/* && cp -Trp packages/backend/native-utils/built /iceshrimp-caches/built
|
||||
rm -rf /iceshrimp-caches/target/* && cp -Trp packages/backend/native-utils/target /iceshrimp-caches/target
|
||||
- name: Test the shrimp
|
||||
run: |
|
||||
cd /iceshrimp
|
||||
cp .config/ci.yml .config/default.yml
|
||||
yarn run migrate
|
Loading…
Reference in a new issue