mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
a49b009980
* test: add anon user test * chore: add to runner * test: fix * test: fix * test: add tests * chore: add test * chore: fix warn * chore: fix warn * fix: build * fix: test * chore: rename * chore: fix test * chore: fix test * chore: fix test * chore: disable test
106 lines
3.3 KiB
YAML
106 lines
3.3 KiB
YAML
name: Rust-CI
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
- "develop"
|
|
- "release/*"
|
|
paths:
|
|
- "frontend/rust-lib/**"
|
|
- "shared-lib/**"
|
|
|
|
pull_request:
|
|
branches:
|
|
- "main"
|
|
- "develop"
|
|
- "release/*"
|
|
paths:
|
|
- "frontend/rust-lib/**"
|
|
- "shared-lib/**"
|
|
|
|
env:
|
|
CARGO_TERM_COLOR: always
|
|
RUST_TOOLCHAIN: "1.70"
|
|
|
|
jobs:
|
|
test-on-ubuntu:
|
|
environment: SUPABASE_CI
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout source code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install Rust toolchain
|
|
id: rust_toolchain
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: ${{ env.RUST_TOOLCHAIN }}
|
|
override: true
|
|
components: rustfmt, clippy
|
|
profile: minimal
|
|
|
|
- name: Install prerequisites
|
|
working-directory: frontend
|
|
run: |
|
|
cargo install --force cargo-make
|
|
cargo install --force duckscript_cli
|
|
|
|
- uses: Swatinem/rust-cache@v2
|
|
with:
|
|
prefix-key: 'ubuntu-latest'
|
|
workspaces: |
|
|
frontend/rust-lib
|
|
|
|
- name: Create .env file in flowy-server
|
|
working-directory: frontend/rust-lib/flowy-server
|
|
run: |
|
|
touch .env.ci
|
|
echo SUPABASE_URL=${{ secrets.SUPABASE_URL }} >> .env.ci
|
|
echo SUPABASE_ANON_KEY=${{ secrets.SUPABASE_ANON_KEY }} >> .env.ci
|
|
echo SUPABASE_JWT_SECRET=${{ secrets.SUPABASE_JWT_SECRET }} >> .env.ci
|
|
|
|
- name: Create .env file in event-integration
|
|
working-directory: frontend/rust-lib/event-integration
|
|
run: |
|
|
touch .env.ci
|
|
echo SUPABASE_URL=${{ secrets.SUPABASE_URL }} >> .env.ci
|
|
echo SUPABASE_ANON_KEY=${{ secrets.SUPABASE_ANON_KEY }} >> .env.ci
|
|
echo SUPABASE_JWT_SECRET=${{ secrets.SUPABASE_JWT_SECRET }} >> .env.ci
|
|
|
|
- name: Checkout appflowy cloud code
|
|
uses: actions/checkout@v3
|
|
with:
|
|
repository: AppFlowy-IO/AppFlowy-Cloud
|
|
path: AppFlowy-Cloud
|
|
depth: 1
|
|
|
|
- name: Prepare appflowy cloud env
|
|
working-directory: AppFlowy-Cloud
|
|
run: |
|
|
# log level
|
|
cp dev.env .env
|
|
sed -i 's|RUST_LOG=.*|RUST_LOG=trace|' .env
|
|
sed -i 's/GOTRUE_SMTP_USER=.*/GOTRUE_SMTP_USER=${{ secrets.INTEGRATION_TEST_GOTRUE_SMTP_USER }}/' .env
|
|
sed -i 's/GOTRUE_SMTP_PASS=.*/GOTRUE_SMTP_PASS=${{ secrets.INTEGRATION_TEST_GOTRUE_SMTP_PASS }}/' .env
|
|
sed -i 's/GOTRUE_SMTP_ADMIN_EMAIL=.*/GOTRUE_SMTP_ADMIN_EMAIL=${{ secrets.INTEGRATION_TEST_GOTRUE_SMTP_ADMIN_EMAIL }}/' .env
|
|
sed -i 's/GOTRUE_EXTERNAL_GOOGLE_ENABLED=.*/GOTRUE_EXTERNAL_GOOGLE_ENABLED=true/' .env
|
|
sed -i 's|API_EXTERNAL_URL=.*|API_EXTERNAL_URL=http://localhost|' .env
|
|
cat .env
|
|
|
|
- name: Run Docker-Compose
|
|
working-directory: AppFlowy-Cloud
|
|
run: |
|
|
docker compose up -d
|
|
|
|
- name: Run rust-lib tests
|
|
working-directory: frontend/rust-lib
|
|
run: RUST_LOG=info RUST_BACKTRACE=1 cargo test --no-default-features --features="rev-sqlite"
|
|
|
|
- name: rustfmt rust-lib
|
|
run: cargo fmt --all -- --check
|
|
working-directory: frontend/rust-lib/
|
|
|
|
- name: clippy rust-lib
|
|
run: cargo clippy --all
|
|
working-directory: frontend/rust-lib |