This repository was archived by the owner on May 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 21
240 lines (207 loc) · 7.4 KB
/
contracts.yml
File metadata and controls
240 lines (207 loc) · 7.4 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
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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
name: Solidity
on:
push:
branches:
- main
paths:
- "solidity/**"
pull_request:
workflow_dispatch:
inputs:
environment:
description: "Environment for workflow execution"
required: false
default: "dev"
upstream_builds:
description: "Upstream builds"
required: false
upstream_ref:
description: "Git reference to checkout (e.g. branch name)"
required: false
default: "main"
jobs:
contracts-detect-changes:
runs-on: ubuntu-latest
outputs:
path-filter: ${{ steps.filter.outputs.path-filter }}
steps:
- uses: actions/checkout@v2
if: github.event_name == 'pull_request'
- uses: dorny/paths-filter@v2
if: github.event_name == 'pull_request'
id: filter
with:
filters: |
path-filter:
- './solidity/**'
contracts-build-and-test:
needs: contracts-detect-changes
if: |
github.event_name != 'pull_request'
|| needs.contracts-detect-changes.outputs.path-filter == 'true'
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./solidity
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14.x"
cache: "npm"
cache-dependency-path: solidity/package-lock.json
- name: Install dependencies
run: npm ci
- name: Build solidity contracts
run: npm run build
- name: Run tests
run: npm run test
contracts-lint:
needs: contracts-detect-changes
if: |
github.event_name == 'push'
|| needs.contracts-detect-changes.outputs.path-filter == 'true'
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./solidity
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: "14.x"
cache: "npm"
cache-dependency-path: solidity/package-lock.json
# Below step is a workaround. Eslint executed in `solidity` directory
# finds `.prettierrc.js` config in the root directory and fails if
# referenced `@keep-network/prettier-config-keep` module is missing.
- name: Install dependencies in the root directory
run: |
cd ..
npm ci
- name: Install dependencies
run: npm ci
- name: Lint
run: npm run lint
contracts-migrate-and-publish:
needs: [contracts-build-and-test]
if: github.event_name == 'workflow_dispatch'
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./solidity
steps:
- uses: actions/checkout@v2
- name: Load environment variables
uses: keep-network/ci/actions/load-env-variables@v1
with:
environment: ${{ github.event.inputs.environment }}
- uses: actions/setup-node@v2
with:
node-version: "14.x"
cache: "npm"
cache-dependency-path: solidity/package-lock.json
registry-url: "https://registry.npmjs.org"
- name: Install dependencies
run: npm ci
- name: Get upstream packages' versions
uses: keep-network/ci/actions/upstream-builds-query@v1
id: upstream-builds-query
with:
upstream-builds: ${{ github.event.inputs.upstream_builds }}
query: |
keep-core-contracts-version = github.com/keep-network/keep-core/solidity-v1#version
- name: Resolve latest contracts
run: |
npm install --save-exact \
@keep-network/keep-core@${{ steps.upstream-builds-query.outputs.keep-core-contracts-version }}
- name: Migrate contracts on Ethereum
if: github.event.inputs.environment != 'alfajores'
env:
CHAIN_API_URL: ${{ secrets.KEEP_TEST_ETH_HOSTNAME_WS }}
CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY: |
${{ secrets.KEEP_TEST_ETH_CONTRACT_OWNER_PRIVATE_KEY }}
run: npx truffle migrate --reset --network ${{ env.TRUFFLE_NETWORK }}
- name: Migrate contracts on Celo
if: github.event.inputs.environment == 'alfajores'
env:
CHAIN_API_URL: ${{ secrets.KEEP_TEST_CELO_HOSTNAME }}
CONTRACT_OWNER_ACCOUNT_PRIVATE_KEY: |
${{ secrets.KEEP_TEST_CELO_CONTRACT_OWNER_PRIVATE_KEY }}
run: npx truffle migrate --reset --network ${{ env.TRUFFLE_NETWORK }}
- name: Copy artifacts
run: |
mkdir -p artifacts
cp -r build/contracts/* artifacts/
- name: Bump up package version
id: npm-version-bump
uses: keep-network/npm-version-bump@v2
with:
work-dir: ./solidity
environment: ${{ github.event.inputs.environment }}
branch: ${{ github.ref }}
commit: ${{ github.sha }}
- name: Push contracts to Tenderly
if: github.event.inputs.environment == 'ropsten'
uses: keep-network/tenderly-push-action@v1
continue-on-error: true
with:
working-directory: ./solidity
tenderly-token: ${{ secrets.TENDERLY_TOKEN }}
tenderly-project: thesis/keep-test
eth-network-id: ${{ env.NETWORK_ID }}
github-project-name: keep-ecdsa
version-tag: ${{ steps.npm-version-bump.outputs.version }}
- name: Publish to npm
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npm publish --access=public --tag ${{ github.event.inputs.environment }}
- name: Notify CI about completion of the workflow
uses: keep-network/ci/actions/notify-workflow-completed@v1
env:
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}
with:
module: "github.com/keep-network/keep-ecdsa/solidity"
url: https://github.com/${{ github.repository }}/actions/runs/${{ github.run_id }}
environment: ${{ github.event.inputs.environment }}
upstream_builds: ${{ github.event.inputs.upstream_builds }}
upstream_ref: ${{ github.event.inputs.upstream_ref }}
version: ${{ steps.npm-version-bump.outputs.version }}
- name: Upload files needed for etherscan verification
uses: actions/upload-artifact@v2
with:
name: Artifacts for etherscan verifcation
path: |
./solidity/build
./solidity/package.json
./solidity/package-lock.json
contracts-etherscan-verification:
needs: [contracts-migrate-and-publish]
if: github.event.inputs.environment != 'alfajores'
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./solidity
steps:
- uses: actions/checkout@v2
- name: Download files needed for etherscan verification
uses: actions/download-artifact@v2
with:
name: Artifacts for etherscan verifcation
path: ./solidity
- name: Load environment variables
uses: keep-network/ci/actions/load-env-variables@v1
with:
environment: ${{ github.event.inputs.environment }}
- uses: actions/setup-node@v2
with:
node-version: "14.x"
cache: "npm"
cache-dependency-path: solidity/package-lock.json
- name: Install needed dependencies
run: npm ci
- name: Verify Ethereum contracts on Etherscan
env:
ETHERSCAN_API_KEY: ${{ secrets.ETHERSCAN_API_KEY }}
TRUFFLE_NETWORK: ${{ env.TRUFFLE_NETWORK}}
run: ./scripts/etherscan-verify.sh