Merge pull request #92 from pratikbalar/patch-2

This commit is contained in:
AppFlowy.IO 2021-11-25 08:25:39 +08:00 committed by GitHub
commit 08de5da716
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -17,35 +17,42 @@ jobs:
rustup toolchain install nightly
rustup default nightly
- name: Frontend tests
run: cd frontend/rust-lib && cargo test
working-directory: frontend/rust-lib
run: cargo test
- name: Shared-lib tests
run: cd shared-lib && cargo test
working-directory: shared-lib
run: cargo test
build-macos:
runs-on: macOS-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Env install
run: cd frontend && make install_rust
working-directory: frontend
run: make install_rust
- name: Checkou Flutter
uses: actions/checkout@v2
with:
repository: flutter/flutter
path: flutter
- name: Flutter
working-directory: flutter
run: |
git clone --depth 1 -b dev https://github.com/flutter/flutter.git
cd flutter
echo `pwd`"/bin" >> $GITHUB_PATH
export PATH="$PATH:`pwd`/bin"
echo "$(pwd)/bin" >> $GITHUB_PATH
export PATH="$PATH:$(pwd)/bin"
flutter channel dev
flutter config --enable-macos-desktop
flutter doctor
- name: Deps
working-directory: frontend
run: |
cd frontend
cargo install --force cargo-make
cargo install --force duckscript_cli
cargo make flowy_dev
- name: Build
run: |
cd frontend
cargo make --profile production-mac-x86 appflowy
working-directory: frontend
run: cargo make --profile production-mac-x86 appflowy
build-ubuntu:
runs-on: ubuntu-latest
steps:
@ -73,8 +80,8 @@ jobs:
flutter config --enable-linux-desktop
flutter doctor
- name: Deps
working-directory: frontend
run: |
cd frontend
cargo install --force cargo-make
cargo install --force duckscript_cli
cargo make flowy_dev