iceshrimp/.forgejo/workflows/test-build.yaml

42 lines
1.7 KiB
YAML
Raw Normal View History

2023-08-28 06:54:26 +02:00
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