-
Notifications
You must be signed in to change notification settings - Fork 21
302 lines (265 loc) · 7.3 KB
/
on-pr.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
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
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
# On PR workflow
# CBB List:
# - Lint Shell
# - Integration tests
name: on-pr
on:
pull_request: {}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
pull-requests: write
contents: read
env:
ARTIFACT_NAME: placeholder
GH_SHORT_SHA: placeholder
RUST_BIN_PATH: placeholder
CONSENSUS_ENCLAVE_CSS: /var/tmp/consensus-enclave.css
INGEST_ENCLAVE_CSS: /var/tmp/ingest-enclave.css
jobs:
meta:
runs-on: mco-dev-small-x64
outputs:
version: ${{ steps.version.outputs.version }}
steps:
- name: Set Version
id: version
run: |
echo "version=v0-sha-${GITHUB_SHA::7}" >> "${GITHUB_OUTPUT}"
lint-actions:
runs-on: mco-dev-small-x64
steps:
- name: Lint GitHub Actions
uses: mobilecoinofficial/gh-actions/lint-actions@v0
lint-shell:
runs-on: mco-dev-small-x64
steps:
- name: Lint shell with Shellcheck
uses: mobilecoinofficial/gh-actions/lint-shell@v0
lint-helm:
runs-on: mco-dev-small-x64
steps:
- name: Lint Helm Charts
uses: mobilecoinofficial/gh-actions/lint-helm@v0
lint-docker:
runs-on: mco-dev-small-x64
steps:
- name: Lint Dockerfiles with Hadolint
uses: mobilecoinofficial/gh-actions/lint-docker@v0
lint-rust:
runs-on: mco-dev-large-x64
container:
image: mobilecoin/rust-base:v0.0.37
env:
SGX_MODE: SW
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
- name: Consensus SigStruct
uses: ./.github/actions/download-sigstruct
with:
sigstruct: consensus
network: test
download_path: ${{ env.CONSENSUS_ENCLAVE_CSS }}
- name: Ingest SigStruct
uses: ./.github/actions/download-sigstruct
with:
sigstruct: ingest
network: test
download_path: ${{ env.INGEST_ENCLAVE_CSS }}
# we don't need to cache the results, we just want an indication of test success
# so we can skip the next step if rust code hasn't changed
- name: Cache Rust Binaries
id: cache
uses: mobilecoinofficial/gh-actions/cache-rust-binaries@v0
with:
cache_buster: ${{ vars.CACHE_BUSTER }}
additional_keys: -lintrust
path: .dummy
- name: Cargo sort
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
run: |
cargo install cargo-sort --force
cargo sort --workspace --grouped --check
- name: Cargo fmt
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
run: |
cargo fmt -- --unstable-features --check
- name: Cargo Clippy
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
run: |
cargo clippy --all --all-features
- name: Success
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
run: touch .dummy/success
test-rust:
runs-on: mco-dev-large-x64
container:
image: mobilecoin/rust-base:v0.0.37
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
- name: Consensus SigStruct
uses: ./.github/actions/download-sigstruct
with:
sigstruct: consensus
network: test
download_path: ${{ env.CONSENSUS_ENCLAVE_CSS }}
- name: Ingest SigStruct
uses: ./.github/actions/download-sigstruct
with:
sigstruct: ingest
network: test
download_path: ${{ env.INGEST_ENCLAVE_CSS }}
# we don't need to cache the results, we just want an indication of test success
# so we can skip the next step if rust code hasn't changed
- name: Cache Rust Binaries
id: cache
uses: mobilecoinofficial/gh-actions/cache-rust-binaries@v0
with:
cache_buster: ${{ vars.CACHE_BUSTER }}
additional_keys: -testrust
path: .dummy
- name: Cargo Test
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
env:
SGX_MODE: SW
CARGO_BACKTRACE: "1"
run: |
cargo test
- name: Success
if: steps.cache.outputs.cache-hit != 'true'
shell: bash
run: touch .dummy/success
build-rust-linux:
needs:
- meta
strategy:
matrix:
runner:
- mco-dev-large-x64
- mco-dev-large-arm64
network:
- main
- test
runs-on: ${{ matrix.runner }}
container:
image: mobilecoin/rust-base:v0.0.37
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
- name: Build Rust
uses: ./.github/actions/build-rust
with:
network: ${{ matrix.network }}
version: ${{ needs.meta.outputs.version }}
cache_buster: ${{ vars.CACHE_BUSTER }}
build-rust-macos:
needs:
- meta
strategy:
fail-fast: false
matrix:
target:
- aarch64-apple-darwin
- x86_64-apple-darwin
network:
- main
- test
runs-on: macos-latest
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
- name: Bootstrap MacOS Rust
uses: ./.github/actions/bootstrap-macos
with:
target: ${{ matrix.target }}
- name: Build Rust
uses: ./.github/actions/build-rust
with:
target: ${{ matrix.target }}
network: ${{ matrix.network }}
version: ${{ needs.meta.outputs.version }}
cache_buster: ${{ vars.CACHE_BUSTER }}
build-containers:
needs:
- meta
- build-rust-linux
strategy:
matrix:
runner:
- mco-dev-small-x64
- mco-dev-small-arm64
network:
- main
- test
runs-on: ${{ matrix.runner }}
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
- name: Build Docker
uses: ./.github/actions/build-docker
with:
network: ${{ matrix.network }}
cache_buster: ${{ vars.CACHE_BUSTER }}
docker_username: ${{ secrets.DOCKERHUB_USERNAME }}
docker_password: ${{ secrets.DOCKERHUB_TOKEN }}
publish-containers:
needs:
- meta
- build-containers
strategy:
matrix:
network:
- main
- test
runs-on: mco-dev-small-x64
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
- name: Merge Digests and Push Tag
uses: ./.github/actions/publish-docker
with:
network: ${{ matrix.network }}
version: ${{ needs.meta.outputs.version }}
docker_username: ${{ secrets.DOCKERHUB_USERNAME }}
docker_password: ${{ secrets.DOCKERHUB_TOKEN }}
build-publish-charts:
needs:
- meta
- publish-containers
strategy:
matrix:
network:
- main
- test
runs-on: mco-dev-small-x64
steps:
- name: Checkout
uses: mobilecoinofficial/gh-actions/checkout@v0
- name: Build and Publish Helm Charts
uses: ./.github/actions/build-publish-charts
with:
version: ${{ needs.meta.outputs.version }}-${{ matrix.network }}net
repo_username: ${{ secrets.HARBOR_USERNAME }}
repo_password: ${{ secrets.HARBOR_PASSWORD }}
checks-successful:
needs:
- lint-actions
- lint-helm
- lint-docker
- lint-rust
- lint-shell
- test-rust
- build-rust-macos
- build-publish-charts
runs-on: mco-dev-small-x64
steps:
- name: Success
run: echo "All checks successful"