-
Notifications
You must be signed in to change notification settings - Fork 7
74 lines (63 loc) · 1.69 KB
/
test.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
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
name: test
on:
push:
branches:
- mainnet
- testnet
- "release/*"
- "feature/*"
- "features/*"
pull_request:
branches:
- mainnet
- testnet
- "release/*"
- "feature/*"
- "features/*"
- "implement-feature/*"
env:
FOUNDRY_PROFILE: ci
jobs:
check-unit-test:
strategy:
fail-fast: true
name: Unit test
runs-on: [self-hosted, dockerize]
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Set up Go 1.19
uses: actions/setup-go@v4
with:
go-version: "1.19"
- name: Setup external packages
run: |
sudo apt-get update
sudo apt-get install -y jq
sudo apt-get install -y gcc
sudo apt-get install -y wget
sudo wget https://github.com/mikefarah/yq/releases/download/v4.34.1/yq_linux_amd64 -O /usr/local/bin/yq
sudo chmod +x /usr/local/bin/yq
- name: Install Foundry
uses: foundry-rs/foundry-toolchain@v1
- name: Install package with soldeer
run: forge soldeer install
- name: Build random beacon binary
run: |
rm -rf temp && mkdir temp && cd temp
git clone https://github.com/ronin-chain/ronin-random-beacon.git
cd ronin-random-beacon && ls
go build -o ronin-random-beacon && ls
cp ./ronin-random-beacon ../../bin/
cd ../../
rm -rf temp
- name: Run Forge build
run: |
forge --version
forge build
id: build
- name: Run Forge tests
run: |
forge test --no-match-path '*forking/*' -vvv
id: test