forked from privacy-scaling-explorations/zkevm-chain
-
Notifications
You must be signed in to change notification settings - Fork 3
31 lines (27 loc) · 1.21 KB
/
super-worst-case-mload.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
name: Super Circuit aggregation worst_case_mload
on:
workflow_dispatch:
pull_request:
types: [synchronize, opened, reopened, labeled]
jobs:
test:
if: github.event_name == 'workflow_dispatch' || contains(github.event.pull_request.labels.*.name, 'ci-super-worst-case-mload')
timeout-minutes: 7200
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.pull_request.number }}
cancel-in-progress: true
runs-on: ["${{github.run_id}}", self-hosted, r6a.48xlarge]
steps:
- uses: actions/checkout@v2
- name: Setup
run: cp .env.example .env
- name: Build docker images
run: |
docker compose down -v --remove-orphans || true
docker buildx create --name mybuilder --use || echo 'skip'
docker compose build bootnode dev
- name: Super Circuit aggregation worst_case_mload
if: always()
run: |
docker compose -f docker-compose.yml -f docker-compose-perf.yml run --use-aliases --no-TTY --rm --entrypoint bash dev -c 'COORDINATOR_AGGREGATE_PROOF=true COORDINATOR_CIRCUIT_NAME=super ./scripts/heavy_ci.sh worst_case_mload'
./scripts/ci_commit_errors.sh super-ag-worst_case_mload