mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
6d496b2088
* chore: remove future result * chore: fix test
124 lines
3.5 KiB
YAML
124 lines
3.5 KiB
YAML
name: Tauri-CI
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/tauri2_ci.yaml"
|
|
- "frontend/rust-lib/**"
|
|
- "frontend/appflowy_web_app/**"
|
|
- "frontend/resources/**"
|
|
|
|
env:
|
|
NODE_VERSION: "18.16.0"
|
|
PNPM_VERSION: "8.5.0"
|
|
RUST_TOOLCHAIN: "1.77.2"
|
|
CARGO_MAKE_VERSION: "0.36.6"
|
|
CI: true
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
# tauri-build-self-hosted:
|
|
# if: github.event.pull_request.head.repo.full_name == github.repository
|
|
# runs-on: self-hosted
|
|
#
|
|
# steps:
|
|
# - uses: actions/checkout@v4
|
|
# - name: install frontend dependencies
|
|
# working-directory: frontend/appflowy_web_app
|
|
# run: |
|
|
# mkdir dist
|
|
# pnpm install
|
|
# cd src-tauri && cargo build
|
|
#
|
|
# - name: test and lint
|
|
# working-directory: frontend/appflowy_web_app
|
|
# run: |
|
|
# pnpm run lint:tauri
|
|
#
|
|
# - uses: tauri-apps/tauri-action@v0
|
|
# env:
|
|
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
# with:
|
|
# tauriScript: pnpm tauri
|
|
# projectPath: frontend/appflowy_web_app
|
|
# args: "--debug"
|
|
|
|
tauri-build-ubuntu:
|
|
#if: github.event.pull_request.head.repo.full_name != github.repository
|
|
runs-on: ubuntu-20.04
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Maximize build space
|
|
run: |
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf /opt/ghc
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
sudo docker image prune --all --force
|
|
sudo rm -rf /opt/hostedtoolcache/codeQL
|
|
sudo rm -rf ${GITHUB_WORKSPACE}/.git
|
|
sudo rm -rf $ANDROID_HOME/ndk
|
|
|
|
- name: setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: ${{ env.NODE_VERSION }}
|
|
|
|
- name: setup pnpm
|
|
uses: pnpm/action-setup@v2
|
|
with:
|
|
version: ${{ env.PNPM_VERSION }}
|
|
|
|
- name: Install Rust toolchain
|
|
id: rust_toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ env.RUST_TOOLCHAIN }}
|
|
override: true
|
|
profile: minimal
|
|
|
|
- name: Node_modules cache
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: frontend/appflowy_web_app/node_modules
|
|
key: node-modules-${{ runner.os }}
|
|
|
|
- name: install dependencies
|
|
working-directory: frontend
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
|
|
|
|
- uses: taiki-e/install-action@v2
|
|
with:
|
|
tool: cargo-make@${{ env.CARGO_MAKE_VERSION }}
|
|
|
|
- name: install tauri deps tools
|
|
working-directory: frontend
|
|
run: |
|
|
cargo make appflowy-tauri-deps-tools
|
|
shell: bash
|
|
|
|
- name: install frontend dependencies
|
|
working-directory: frontend/appflowy_web_app
|
|
run: |
|
|
mkdir dist
|
|
pnpm install
|
|
cd src-tauri && cargo build
|
|
|
|
- name: test and lint
|
|
working-directory: frontend/appflowy_web_app
|
|
run: |
|
|
pnpm run lint:tauri
|
|
|
|
- uses: tauri-apps/tauri-action@v0
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
with:
|
|
tauriScript: pnpm tauri
|
|
projectPath: frontend/appflowy_web_app
|
|
args: "--debug" |