AppFlowy/.github/workflows/ci.yaml

92 lines
2.6 KiB
YAML
Raw Normal View History

2021-11-16 04:32:43 +00:00
name: CI
2021-11-16 04:32:43 +00:00
on:
push:
branches:
- "main"
2021-11-16 04:32:43 +00:00
pull_request:
branches:
- "main"
2021-11-23 09:53:08 +00:00
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
include:
- os: ubuntu-latest
flutter_profile: development-linux-x86_64
- os: macos-latest
2022-05-30 12:48:28 +00:00
flutter_profile: development-mac-x86_64
runs-on: ${{ matrix.os }}
2021-11-16 04:32:43 +00:00
steps:
- uses: actions/checkout@v2
- id: rust_toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: "stable-2022-01-20"
- id: flutter
uses: subosito/flutter-action@v2
2021-11-24 05:51:40 +00:00
with:
channel: "stable"
cache: true
flutter-version: "3.0.5"
- name: Cache Cargo
id: cache-cargo
uses: actions/cache@v2
with:
path: |
~/.cargo
key: ${{ runner.os }}-cargo-${{ steps.rust_toolchain.outputs.rustc_hash }}-${{ hashFiles('./frontend/rust-lib/Cargo.toml') }}
- name: Cache Rust
uses: actions/cache@v2
with:
path: |
frontend/rust-lib/target
shared-lib/target
key: ${{ runner.os }}-rust-rust-lib-share-lib-${{ steps.rust_toolchain.outputs.rustc_hash }}-${{ hashFiles('./frontend/rust-lib/Cargo.toml') }}
- name: Setup Environment
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
sudo wget -qO /etc/apt/trusted.gpg.d/dart_linux_signing_key.asc https://dl-ssl.google.com/linux/linux_signing_key.pub
sudo wget -qO /etc/apt/sources.list.d/dart_stable.list https://storage.googleapis.com/download.dartlang.org/linux/debian/dart_stable.list
sudo apt-get update
sudo apt-get install -y dart curl build-essential libsqlite3-dev libssl-dev clang cmake ninja-build pkg-config libgtk-3-dev
elif [ "$RUNNER_OS" == "macOS" ]; then
echo 'do nothing'
fi
shell: bash
- if: steps.cache-cargo.outputs.cache-hit != 'true'
name: Deps
2021-11-24 05:51:40 +00:00
working-directory: frontend
2021-11-23 08:54:40 +00:00
run: |
cargo install cargo-make
cargo install duckscript_cli
- name: Cargo make flowy_dev
working-directory: frontend
run: |
2021-11-23 08:54:40 +00:00
cargo make flowy_dev
- name: Config Flutter
2021-11-21 03:31:37 +00:00
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
flutter config --enable-linux-desktop
elif [ "$RUNNER_OS" == "macOS" ]; then
flutter config --enable-macos-desktop
fi
shell: bash
2021-11-23 08:54:40 +00:00
- name: Build
working-directory: frontend
run: |
cargo make --profile ${{ matrix.flutter_profile }} appflowy-dev