-
Notifications
You must be signed in to change notification settings - Fork 42
117 lines (97 loc) · 3.28 KB
/
medusa.yaml
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
name: Test examples using Medusa
on:
push:
branches:
- main
pull_request:
branches:
- "*"
env:
FOUNDRY_PROFILE: ci
jobs:
foundry:
name: Test Foundry examples
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Go setup
uses: actions/setup-go@v4
with:
go-version: "^1.18.1"
- name: Install medusa
run: |
git clone https://github.com/crytic/medusa.git
cd medusa
go build -o medusa -v .
go install -v .
sudo cp medusa /usr/bin
pip install crytic-compile
- name: Compile ERC20 Foundry example
working-directory: tests/ERC20/foundry
run: forge build --build-info
- name: Run Medusa for Internal ERC20 tests
working-directory: tests/ERC20/foundry
run: |
medusa fuzz --target-contracts CryticERC20InternalHarness --config medusa-config.json
- name: Run Medusa for External ERC20 tests
working-directory: tests/ERC20/foundry
run: |
medusa fuzz --target-contracts CryticERC20ExternalHarness --config medusa-config-ext.json
- name: Compile ERC4646 Foundry example
working-directory: tests/ERC4626/foundry
run: forge build --build-info
- name: Run Medusa for External ERC4626 tests
working-directory: tests/ERC4626/foundry
run: |
medusa fuzz --target-contracts CryticERC4626InternalHarness --config medusa-config.json
hardhat:
name: Test Hardhat examples
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Nodejs
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies and compile ERC20 example
working-directory: tests/ERC20/hardhat
run: |
npm ci
npx hardhat compile --force
- name: Install dependencies and compile ERC4626 example
working-directory: tests/ERC4626/hardhat
run: |
npm ci
npx hardhat compile --force
- name: Go setup
uses: actions/setup-go@v4
with:
go-version: "^1.18.1"
- name: Install medusa
run: |
git clone https://github.com/crytic/medusa.git
cd medusa
go build -o medusa -v .
go install -v .
sudo cp medusa /usr/bin
pip install crytic-compile
- name: Run Medusa for Internal ERC20 tests
working-directory: tests/ERC20/hardhat
run: |
medusa fuzz --target-contracts CryticERC20InternalHarness --config medusa-config.json
- name: Run Medusa for External ERC20 tests
working-directory: tests/ERC20/hardhat
run: |
medusa fuzz --target-contracts CryticERC20ExternalHarness --config medusa-config-ext.json
- name: Run Medusa for External ERC4626 tests
working-directory: tests/ERC4626/hardhat
run: |
medusa fuzz --target-contracts CryticERC4626Harness --config medusa-config.json