chore: fix build #46
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: AppFlowy-Cloud Stress Test | |
on: [ pull_request, push ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
cancel-in-progress: true | |
env: | |
POSTGRES_HOST: localhost | |
REDIS_HOST: localhost | |
POSTGRES_PASSWORD: password | |
MINIO_HOST: localhost | |
SQLX_OFFLINE: true | |
RUST_TOOLCHAIN: "1.78" | |
jobs: | |
test: | |
name: Collab Stress Tests | |
runs-on: self-hosted-appflowy3 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Install Rust Toolchain | |
uses: dtolnay/rust-toolchain@stable | |
- name: Cache Rust Dependencies | |
uses: Swatinem/rust-cache@v2 | |
with: | |
workspaces: "AppFlowy-Cloud" | |
- name: Copy and Rename deploy.env to .env | |
run: cp deploy.env .env | |
- name: Replace Values in .env | |
run: | | |
sed -i '' 's|RUST_LOG=.*|RUST_LOG=trace|' .env | |
#Gotrue config: | |
sed -i '' 's|GOTRUE_DATABASE_URL=.*|GOTRUE_DATABASE_URL=postgres://supabase_auth_admin:root@postgres:${POSTGRES_PORT}/${POSTGRES_DB}|' .env | |
sed -i '' 's|APPFLOWY_GOTRUE_BASE_URL=.*|APPFLOWY_GOTRUE_BASE_URL=http://localhost:9999|' .env | |
sed -i '' 's|API_EXTERNAL_URL=.*|API_EXTERNAL_URL=http://localhost:9999|' .env | |
cat .env | |
shell: bash | |
- name: Start Docker Compose Services | |
run: | | |
docker compose -f docker-compose-stress-test.yml up -d | |
docker ps -a | |
- name: Install Prerequisites | |
run: | | |
brew install protobuf | |
- name: Run Server and Test | |
run: | | |
cargo run --package xtask -- --stress-test |