mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-15 15:01:48 +03:00
193 lines
6.1 KiB
YAML
193 lines
6.1 KiB
YAML
name: Build Images
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
flavor:
|
|
type: string
|
|
required: true
|
|
|
|
env:
|
|
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
|
|
|
|
permissions:
|
|
contents: 'write'
|
|
id-token: 'write'
|
|
packages: 'write'
|
|
|
|
jobs:
|
|
build-server:
|
|
name: Build Server
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Version
|
|
id: version
|
|
uses: ./.github/actions/setup-version
|
|
- name: Setup Node.js
|
|
uses: ./.github/actions/setup-node
|
|
with:
|
|
electron-install: false
|
|
extra-flags: workspaces focus @affine/server
|
|
- name: Build Server
|
|
run: yarn workspace @affine/server build
|
|
- name: Upload server dist
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: server-dist
|
|
path: ./packages/backend/server/dist
|
|
if-no-files-found: error
|
|
|
|
build-web-selfhost:
|
|
name: Build @affine/web selfhost
|
|
runs-on: ubuntu-latest
|
|
environment: ${{ github.event.inputs.flavor }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Version
|
|
id: version
|
|
uses: ./.github/actions/setup-version
|
|
- name: Setup Node.js
|
|
uses: ./.github/actions/setup-node
|
|
- name: Build Core
|
|
run: yarn nx build @affine/web --skip-nx-cache
|
|
env:
|
|
BUILD_TYPE: ${{ github.event.inputs.flavor }}
|
|
SHOULD_REPORT_TRACE: false
|
|
PUBLIC_PATH: '/'
|
|
SELF_HOSTED: true
|
|
MIXPANEL_TOKEN: ${{ secrets.MIXPANEL_TOKEN }}
|
|
- name: Download selfhost fonts
|
|
run: node ./scripts/download-blocksuite-fonts.mjs
|
|
- name: Upload web artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: selfhost-web
|
|
path: ./packages/frontend/web/dist
|
|
if-no-files-found: error
|
|
|
|
build-server-native:
|
|
name: Build Server native - ${{ matrix.targets.name }}
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
targets:
|
|
- name: x86_64-unknown-linux-gnu
|
|
file: server-native.node
|
|
- name: aarch64-unknown-linux-gnu
|
|
file: server-native.arm64.node
|
|
- name: armv7-unknown-linux-gnueabihf
|
|
file: server-native.armv7.node
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Version
|
|
id: version
|
|
uses: ./.github/actions/setup-version
|
|
- name: Setup Node.js
|
|
uses: ./.github/actions/setup-node
|
|
with:
|
|
electron-install: false
|
|
extra-flags: workspaces focus @affine/server-native
|
|
- name: Build Rust
|
|
uses: ./.github/actions/build-rust
|
|
with:
|
|
target: ${{ matrix.targets.name }}
|
|
package: '@affine/server-native'
|
|
nx_token: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
|
|
- name: Upload ${{ matrix.targets.file }}
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: ${{ matrix.targets.file }}
|
|
path: ./packages/backend/native/server-native.node
|
|
if-no-files-found: error
|
|
|
|
build-docker:
|
|
name: Build Docker
|
|
runs-on: ubuntu-latest
|
|
needs:
|
|
- build-server
|
|
- build-web-selfhost
|
|
- build-server-native
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Download server dist
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: server-dist
|
|
path: ./packages/backend/server/dist
|
|
- name: Download server-native.node
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: server-native.node
|
|
path: ./packages/backend/server
|
|
- name: Download server-native.node arm64
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: server-native.arm64.node
|
|
path: ./packages/backend/native
|
|
- name: Download server-native.node arm64
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: server-native.armv7.node
|
|
path: .
|
|
- name: move server-native files
|
|
run: |
|
|
mv ./packages/backend/native/server-native.node ./packages/backend/server/server-native.arm64.node
|
|
mv server-native.node ./packages/backend/server/server-native.armv7.node
|
|
- name: Setup env
|
|
run: |
|
|
echo "GIT_SHORT_HASH=$(git rev-parse --short HEAD)" >> "$GITHUB_ENV"
|
|
if [ -z "${{ inputs.flavor }}" ]
|
|
then
|
|
echo "RELEASE_FLAVOR=canary" >> "$GITHUB_ENV"
|
|
else
|
|
echo "RELEASE_FLAVOR=${{ inputs.flavor }}" >> "$GITHUB_ENV"
|
|
fi
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
logout: false
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
# setup node without cache configuration
|
|
# Prisma cache is not compatible with docker build cache
|
|
- name: Setup Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
registry-url: https://npm.pkg.github.com
|
|
scope: '@toeverything'
|
|
|
|
- name: Download selfhost web artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: selfhost-web
|
|
path: ./packages/frontend/web/dist
|
|
|
|
- name: Install Node.js dependencies
|
|
run: |
|
|
yarn config set --json supportedArchitectures.cpu '["x64", "arm64", "arm"]'
|
|
yarn config set --json supportedArchitectures.libc '["glibc"]'
|
|
yarn workspaces focus @affine/server --production
|
|
|
|
- name: Generate Prisma client
|
|
run: yarn workspace @affine/server prisma generate
|
|
|
|
- name: Build graphql Dockerfile
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
push: true
|
|
pull: true
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|
|
provenance: true
|
|
file: .github/deployment/node/Dockerfile
|
|
tags: ghcr.io/toeverything/affine-graphql:${{env.RELEASE_FLAVOR}}-${{ env.GIT_SHORT_HASH }},ghcr.io/toeverything/affine-graphql:${{env.RELEASE_FLAVOR}}
|