mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-09 11:41:30 -07:00
Use build:debug and custom build environment docker image for CI
This commit is contained in:
parent
66ab00a174
commit
0952a37e86
10 changed files with 19 additions and 7 deletions
|
@ -4,7 +4,7 @@ jobs:
|
|||
test-build:
|
||||
runs-on: docker
|
||||
container:
|
||||
image: alpine:3.18
|
||||
image: iceshrimp.dev/iceshrimp/iceshrimp:ci-env
|
||||
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:
|
||||
|
@ -14,10 +14,6 @@ jobs:
|
|||
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
|
||||
|
@ -31,7 +27,7 @@ jobs:
|
|||
cd /iceshrimp
|
||||
cp -Trp /iceshrimp-caches/built packages/backend/native-utils/built
|
||||
cp -Trp /iceshrimp-caches/target packages/backend/native-utils/target
|
||||
yarn build
|
||||
yarn build:debug
|
||||
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
|
||||
|
|
4
ci-env/Dockerfile
Normal file
4
ci-env/Dockerfile
Normal file
|
@ -0,0 +1,4 @@
|
|||
FROM alpine:3.18
|
||||
RUN apk add --no-cache --no-progress git alpine-sdk vips-dev python3 nodejs-current npm rust cargo vips
|
||||
RUN corepack enable && corepack prepare yarn@stable --activate
|
||||
CMD ["/bin/sh"]
|
|
@ -10,6 +10,7 @@
|
|||
"scripts": {
|
||||
"rebuild": "clean && node ./scripts/build-greet.js && yarn workspace iceshrimp-js build && yarn workspaces foreach -pitv run build && gulp",
|
||||
"build": "node ./scripts/build-greet.js && yarn workspace iceshrimp-js run build && yarn workspaces foreach -pitv run build && gulp",
|
||||
"build:debug": "node ./scripts/build-greet.js && yarn workspace iceshrimp-js run build:debug && yarn workspaces foreach -pitv run build:debug && gulp",
|
||||
"start": "yarn workspace backend run start",
|
||||
"start:test": "yarn workspace backend run start:test",
|
||||
"init": "yarn migrate",
|
||||
|
|
|
@ -49,3 +49,9 @@ lto = true
|
|||
[profile.release-no-lto]
|
||||
inherits = "release"
|
||||
lto = false
|
||||
|
||||
[profile.debug-napi]
|
||||
inherits = "dev"
|
||||
|
||||
[profile.debug-migration]
|
||||
inherits = "dev"
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
"build": "yarn build:napi && yarn build:migration",
|
||||
"build:napi": "napi build --features napi --platform --release ./built/",
|
||||
"build:migration": "cargo build --locked --profile release-no-lto -p migration && cp ./target/release-no-lto/migration ./built/migration",
|
||||
"build:debug": "napi build --platform ./built/ && cargo build -p migration",
|
||||
"build:debug": "napi build --features napi --platform --profile debug-napi ./built/ && cargo build --locked --profile debug-migration -p migration && cp ./target/debug-migration/migration ./built/migration",
|
||||
"prepublishOnly": "napi prepublish -t npm",
|
||||
"test": "yarn cargo:test && yarn build:napi && ava",
|
||||
"universal": "napi universal",
|
||||
|
|
|
@ -14,6 +14,7 @@
|
|||
"revertmigration:cargo": "./native-utils/built/migration down",
|
||||
"check:connect": "node ./check_connect.js",
|
||||
"build": "swc src -d built -D",
|
||||
"build:debug": "swc src -d built -s -D",
|
||||
"watch": "swc src -d built -D -w",
|
||||
"lint": "rome check --apply *",
|
||||
"mocha": "cross-env NODE_ENV=test TS_NODE_FILES=true TS_NODE_TRANSPILE_ONLY=true TS_NODE_PROJECT=\"./test/tsconfig.json\" mocha",
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
"scripts": {
|
||||
"watch": "vite build --watch --mode development",
|
||||
"build": "vite build",
|
||||
"build:debug": "yarn build",
|
||||
"lint": "rome check **/*.ts --apply && yarn lint:vue",
|
||||
"lint:vue": "paralint --ext .vue --fix '**/*.vue' --cache",
|
||||
"format": "rome format * --write && prettier --write '**/*.{scss,vue}' --cache --cache-strategy metadata"
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
"types": "./built/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "swc src -d built -D",
|
||||
"build:debug": "swc src -d built -s -D",
|
||||
"render": "yarn build && yarn api && yarn api-prod && cp temp/iceshrimp-js.api.json etc/ && yarn api-doc",
|
||||
"tsd": "tsc && tsd",
|
||||
"api": "api-extractor run --local --verbose",
|
||||
|
|
|
@ -5,6 +5,7 @@
|
|||
"typings": "./lib/src/index.d.ts",
|
||||
"scripts": {
|
||||
"build": "tsc -p ./",
|
||||
"build:debug": "yarn build",
|
||||
"lint": "rome check **/*.ts --apply",
|
||||
"format": "rome format --write src/**/*.ts",
|
||||
"doc": "typedoc --out ../docs ./src",
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
"private": true,
|
||||
"scripts": {
|
||||
"build": "webpack",
|
||||
"build:debug": "yarn build",
|
||||
"watch": "swc src -d built -D -w",
|
||||
"lint": "rome check **/*.ts --apply",
|
||||
"format": "rome format * --write"
|
||||
|
|
Loading…
Reference in a new issue