-
Notifications
You must be signed in to change notification settings - Fork 240
75 lines (67 loc) · 1.95 KB
/
fp-verify.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
75
name: New-FP
on:
pull_request:
types: [opened, synchronize]
paths:
- 'bbn-1/finality-providers/registry/**.json'
- 'bbn-1/finality-providers/sigs/**.sig'
jobs:
build-eotsd:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
repository: babylonlabs-io/finality-provider
ref: v0.4.0
- name: Cache eotsd
id: cache-eots
uses: actions/cache@v4
with:
path: |
./build/eotsd
key: key-eotsd-v040
- name: Setup go
uses: actions/setup-go@v5
with:
go-version: 1.21
- name: Compile
run: |
go mod download
make build
changed-fp-files:
runs-on: ubuntu-latest
outputs:
any_changed: ${{steps.changed-files-registry.outputs.any_changed}}
all_changed_files: ${{steps.changed-files-registry.outputs.all_changed_files}}
steps:
- uses: actions/checkout@v4 # checkout to current repo
with:
fetch-depth: 0 # fetch all
- name: Get changed files
id: changed-files-registry
uses: tj-actions/changed-files@v44
with:
files: 'bbn-1/finality-providers/registry/*.json'
verify-new-fp:
needs:
- build-eotsd
- changed-fp-files
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Load eotsd
id: cache-bin
uses: actions/cache@v4
with:
path: |
./build/eotsd
key: key-eotsd-v040
- name: Verify new FPs
if: needs.changed-fp-files.outputs.any_changed == 'true'
env:
ALL_CHANGED_FILES: ${{ needs.changed-fp-files.outputs.all_changed_files }}
run: |
for filePathRegistryFP in ${ALL_CHANGED_FILES}; do
nickname=$(basename "$filePathRegistryFP" .json)
EOTSD_BIN=./build/eotsd ./bbn-1/finality-providers/scripts/verify-valid-fp.sh $nickname
done