perf(ci): use matrix to speed up build

This commit is contained in:
AnotiaWang
2025-02-24 17:27:09 +08:00
parent ac716043a2
commit 5d1b517922
2 changed files with 29 additions and 11 deletions

View File

@ -10,7 +10,14 @@ env:
jobs: jobs:
build: build:
runs-on: ubuntu-latest strategy:
matrix:
include:
- platform: linux/amd64
runner: ubuntu-latest
- platform: linux/arm64
runner: ubuntu-24.04-arm
runs-on: ${{ matrix.runner }}
permissions: permissions:
contents: read contents: read
packages: write packages: write
@ -19,11 +26,10 @@ jobs:
- name: Checkout repository - name: Checkout repository
uses: actions/checkout@v4 uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx - name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3 uses: docker/setup-buildx-action@v3
with:
platforms: ${{ matrix.platform }}
- name: Log in to Docker Hub - name: Log in to Docker Hub
uses: docker/login-action@v3 uses: docker/login-action@v3
@ -47,8 +53,11 @@ jobs:
with: with:
context: . context: .
push: true push: true
platforms: linux/amd64,linux/arm64 platforms: ${{ matrix.platform }}
tags: ${{ steps.meta.outputs.tags }} tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }} labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha cache-from: |
cache-to: type=gha,mode=max type=gha,scope=${{ matrix.platform }}
cache-to: |
type=gha,mode=max,scope=${{ matrix.platform }}
target: runner # 只构建到最终阶段

View File

@ -1,20 +1,29 @@
FROM node:20-alpine AS builder FROM node:20-alpine AS deps
WORKDIR /app WORKDIR /app
# 只复制依赖相关文件
COPY package.json pnpm-lock.yaml ./ COPY package.json pnpm-lock.yaml ./
RUN npm i -g --force pnpm@9 RUN npm i -g --force pnpm@9
RUN pnpm install --frozen-lockfile RUN pnpm install --frozen-lockfile --prod
FROM node:20-alpine AS builder
WORKDIR /app
COPY --from=deps /app/node_modules ./node_modules
COPY . . COPY . .
ENV NODE_OPTIONS="--max_old_space_size=2048" ENV NODE_OPTIONS="--max_old_space_size=2048"
RUN npm i -g --force pnpm@9
RUN pnpm install --frozen-lockfile
RUN pnpm build:optimize RUN pnpm build:optimize
FROM node:20-alpine AS runner FROM node:20-alpine AS runner
WORKDIR /app WORKDIR /app
# We only need the `.output` directory, which contains everything the app needs to run ENV NODE_ENV production
# 只复制必要的文件
COPY --from=builder /app/.output .output COPY --from=builder /app/.output .output
COPY --from=builder /app/package.json . COPY --from=builder /app/package.json .