-
Notifications
You must be signed in to change notification settings - Fork 0
59 lines (53 loc) · 1.44 KB
/
normal_vote_ci.yml
File metadata and controls
59 lines (53 loc) · 1.44 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
name: Normal vote CI
on:
push:
branches-ignore:
- "master"
- "feat/tests"
- "feat/rc3"
- "feat/rc2"
- "feat/rc1"
- "feat/next-vote"
jobs:
run-tests-normal-1:
name: Brownie fork NORMAL tests 1
runs-on: [ubuntu-latest]
timeout-minutes: 150
services:
hardhat-node:
image: ghcr.io/lidofinance/hardhat-node:2.26.0
ports:
- 8545:8545
env:
ETH_RPC_URL: ${{ secrets.ETH_RPC_URL }}
HARDFORK: "cancun"
steps:
- uses: actions/checkout@v4
- name: Main action
uses: ./.github/actions/brownie_fork_tests
with:
vote: "normal"
rpc_url: ${{ secrets.ETH_RPC_URL }}
etherscan: ${{ secrets.ETHERSCAN_TOKEN }}
command: "PYTHONPATH=$PWD make test-1/2"
run-tests-normal-2:
name: Brownie fork NORMAL tests 2
runs-on: [ubuntu-latest]
timeout-minutes: 150
services:
hardhat-node:
image: ghcr.io/lidofinance/hardhat-node:2.26.0
ports:
- 8546:8545
env:
ETH_RPC_URL: ${{ secrets.ETH_RPC_URL }}
HARDFORK: "cancun"
steps:
- uses: actions/checkout@v4
- name: Main action
uses: ./.github/actions/brownie_fork_tests
with:
vote: "normal"
rpc_url: ${{ secrets.ETH_RPC_URL }}
etherscan: ${{ secrets.ETHERSCAN_TOKEN }}
command: "PYTHONPATH=$PWD make test-2/2"