This repository was archived by the owner on Jun 11, 2025. It is now read-only.
Add PR test for coprocessor #9
This file contains hidden or 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: Run PR test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
coprocessor_test: | |
permissions: | |
contents: read | |
runs-on: "large_ubuntu_32" | |
if: ${{ github.event_name == 'push' || !github.event.pull_request.draft }} | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Install protobuf compiler | |
run: sudo apt-get install -y protobuf-compiler | |
- name: Install sqlx-cli from crates.io | |
uses: baptiste0928/cargo-install@v3 | |
with: | |
crate: sqlx-cli | |
version: '^0.8' | |
- name: Setup database | |
working-directory: ./fhevm-engine/coprocessor | |
run: | | |
make init_db | |
# build with --release flag for faster tests | |
cargo build --release | |
cargo build --tests --release | |
DATABASE_URL="postgres://postgres:postgres@localhost/coprocessor" cargo run --release -- --metrics-addr=127.0.0.1:9100 --run-server & | |
DATABASE_URL="postgres://postgres:postgres@localhost/coprocessor" cargo run --release -- --metrics-addr=127.0.0.1:9101 --run-bg-worker & | |
# give some time for ports to open etc | |
sleep 1 | |
COPROCESSOR_TEST_LOCALHOST=true cargo test --release -- --nocapture | |