Increase CSP factory pause window to 4 years, buffer period to 180 days. #3584
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: Benchmark | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: '*' | |
jobs: | |
deployment: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Compile | |
run: yarn build | |
- name: Benchmark Deployment | |
run: yarn workspace @balancer-labs/v2-benchmarks measure-deployment | |
single-pair-swap: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Compile | |
run: yarn build | |
- name: Benchmark Single Pair | |
run: yarn workspace @balancer-labs/v2-benchmarks measure-single-pair | |
multihop-swap: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Compile | |
run: yarn build | |
- name: Benchmark Multihop | |
run: yarn workspace @balancer-labs/v2-benchmarks measure-multihop | |
join-exit: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Compile | |
run: yarn build | |
- name: Benchmark Join/Exit | |
run: yarn workspace @balancer-labs/v2-benchmarks measure-join-exit | |
merkle-claim: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up environment | |
uses: ./.github/actions/setup | |
- name: Compile | |
run: yarn build | |
- name: Benchmark Merkle Claim | |
run: yarn workspace @balancer-labs/v2-benchmarks measure-merkle-claim | |
env: | |
CI: true |