forked from toeverything/OctoBase
-
Notifications
You must be signed in to change notification settings - Fork 0
438 lines (382 loc) · 15.6 KB
/
jwst.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
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
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
name: Build Jwst
on:
workflow_dispatch:
push:
branches: [master]
paths:
- 'apps/cloud/**'
- 'apps/homepage/**'
- 'apps/keck/**'
- 'libs/**'
- '.github/deployment/Dockerfile-cloud'
- '.github/deployment/Dockerfile-jwst'
- '.github/deployment/Dockerfile-mt-cloud'
- '.github/workflows/jwst.yml'
pull_request:
branches: [master]
paths:
- 'apps/cloud/**'
- 'apps/homepage/**'
- 'apps/playground/**'
- 'apps/keck/**'
- 'libs/**'
- '.github/deployment/Dockerfile-cloud'
- '.github/deployment/Dockerfile-jwst'
- '.github/deployment/Dockerfile-mt-cloud'
- '.github/workflows/jwst.yml'
# Cancels all previous workflow runs for pull requests that have not completed.
# See https://docs.github.com/en/actions/using-jobs/using-concurrency
concurrency:
# The concurrency group contains the workflow name and the branch name for
# pull requests or the commit hash for any other events.
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
env:
REGISTRY: ghcr.io
NAMESPACE: toeverything
APIPROXY_IMAGE_NAME: apiproxy
CLOUD_IMAGE_NAME: cloud-self-hosted
JWST_IMAGE_NAME: jwst
IMAGE_TAG: canary-${{ github.sha }}
IMAGE_TAG_LATEST: nightly-latest
LOCAL_CACHE: localhost:5000/toeverything/relocate:latest
IMAGE_TAG_MT: canary-mt-${{ github.sha }}
IMAGE_TAG_MT_LATEST: mt-latest
jobs:
aio-cloud-baseline:
if: github.ref == 'refs/heads/master'
runs-on: self-hosted
environment: development
permissions:
contents: read
packages: write
services:
registry:
image: registry:2
ports:
- 5000:5000
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- name: Set up pnpm cache
uses: actions/cache@v3
continue-on-error: false
with:
path: ./node_modules/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-
- name: Cargo Vendor
run: cargo vendor > .cargo/config
- name: Log in to the Container registry
uses: docker/login-action@v2
if: github.ref == 'refs/heads/master'
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.ACTIONS_PACKAGE_PUBLISH }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
driver-opts: network=host
- name: Build and push Docker image (cloud-mt-baseline)
uses: docker/build-push-action@v3
if: github.ref == 'refs/heads/master'
with:
context: .
file: ./.github/deployment/Dockerfile-mt-cloud
push: true
tags: ${{ env.LOCAL_CACHE }}
target: jwst
- name: Get current time
id: time
run: echo "::set-output name=time::$(date +'%Y%m%d-%H%M')"
- name: Extract metadata (tags, labels) for Docker (mt-cloud)
id: meta_mt_cloud
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}/${{ env.CLOUD_IMAGE_NAME }}
tags: |
${{ env.IMAGE_TAG_MT }}-${{ steps.time.outputs.time }}
${{ env.IMAGE_TAG_MT_LATEST }}
- name: Build and push Docker image (mt-cloud)
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm/v7,linux/arm64/v8
file: ./.github/deployment/Dockerfile-mt-cloud-prod
push: ${{ github.ref == 'refs/heads/master' && true || false }}
tags: ${{ steps.meta_mt_cloud.outputs.tags }}
labels: ${{ steps.meta_mt_cloud.outputs.labels }}
target: affine
build-args: |
BASE_IMAGE=${{ env.LOCAL_CACHE }}
cloud:
runs-on: self-hosted
environment: development
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- uses: Swatinem/rust-cache@v2
- name: Set up pnpm cache
uses: actions/cache@v3
continue-on-error: false
with:
path: ./node_modules/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-
- name: Cargo Vendor
run: cargo vendor > .cargo/config
- name: Log in to the Container registry
uses: docker/login-action@v2
if: github.ref == 'refs/heads/master'
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.ACTIONS_PACKAGE_PUBLISH }}
- name: Get current time
id: time
run: echo "::set-output name=time::$(date +'%H%M')"
- name: Extract metadata (tags, labels) for Docker (cloud)
id: meta_cloud
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}/${{ env.CLOUD_IMAGE_NAME }}
tags: |
${{ env.IMAGE_TAG }}-${{ steps.time.outputs.time }}
${{ env.IMAGE_TAG_LATEST }}
- name: Build Docker image (pull request)
uses: docker/build-push-action@v3
if: github.ref != 'refs/heads/master'
with:
context: .
file: ./.github/deployment/Dockerfile-cloud
tags: ${{ steps.meta_cloud.outputs.tags }}
labels: ${{ steps.meta_cloud.outputs.labels }}
target: cloud
- name: Build and push Docker image (cloud)
uses: docker/build-push-action@v3
if: github.ref == 'refs/heads/master'
with:
context: .
file: ./.github/deployment/Dockerfile-cloud
push: true
tags: ${{ steps.meta_cloud.outputs.tags }}
labels: ${{ steps.meta_cloud.outputs.labels }}
target: cloud
jwst:
runs-on: ubuntu-latest
environment: development
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: pnpm/action-setup@v2
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
target: x86_64-unknown-linux-musl
override: true
- uses: Swatinem/rust-cache@v2
- name: Set up pnpm cache
uses: actions/cache@v3
continue-on-error: false
with:
path: ./node_modules/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-
- name: Build & Check
run: |
sudo apt install -yq musl-tools musl-dev
pnpm i --frozen-lockfile --store=node_modules/.pnpm-store
cargo vendor > .cargo/config
cargo build --profile fast-release --package keck --target x86_64-unknown-linux-musl
env:
CARGO_TARGET_X86_64_UNKNOWN_LINUX_MUSL_LINKER: x86_64-linux-musl-gcc
CARGO_TERM_COLOR: always
- name: Log in to the Container registry
if: github.ref == 'refs/heads/master'
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.ACTIONS_PACKAGE_PUBLISH }}
- name: Get current time
id: time
run: echo "::set-output name=time::$(date +'%H%M')"
- name: Extract metadata (tags, labels) for Docker
id: meta_jwst
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}/${{ env.JWST_IMAGE_NAME }}
tags: |
${{ env.IMAGE_TAG }}-${{ steps.time.outputs.time }}
${{ env.IMAGE_TAG_LATEST }}
- name: Build and push Docker image (jwst)
uses: docker/build-push-action@v3
with:
context: .
file: ./.github/deployment/Dockerfile-jwst
push: ${{ github.ref == 'refs/heads/master' && true || false }}
tags: ${{ steps.meta_jwst.outputs.tags }}
labels: ${{ steps.meta_jwst.outputs.labels }}
target: jwst
network: host
apiproxy:
if: github.ref == 'refs/heads/master'
runs-on: ubuntu-latest
environment: development
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Log in to the Container registry
uses: docker/login-action@v2
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.ACTIONS_PACKAGE_PUBLISH }}
- name: Extract metadata (tags, labels) for Docker (apiproxy)
id: meta_apiproxy
uses: docker/metadata-action@v4
with:
images: ${{ env.REGISTRY }}/${{ env.NAMESPACE }}/${{ env.APIPROXY_IMAGE_NAME }}
tags: |
${{ env.IMAGE_TAG }}
${{ env.IMAGE_TAG_LATEST }}
- name: Build and push Docker image (apiproxy)
uses: docker/build-push-action@v3
with:
context: .
file: ./.github/deployment/Dockerfile-apiproxy
push: ${{ github.ref == 'refs/heads/master' && true || false }}
tags: ${{ steps.meta_apiproxy.outputs.tags }}
labels: ${{ steps.meta_apiproxy.outputs.labels }}
target: apiproxy
lint:
runs-on: ubuntu-latest
environment: development
permissions:
contents: read
security-events: write
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
components: clippy
override: true
- uses: Swatinem/rust-cache@v2
- name: Set up pnpm cache
uses: actions/cache@v3
continue-on-error: false
with:
path: ./node_modules/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-pnpm-
- name: Install required cargo components
uses: taiki-e/install-action@v2
with:
tool: clippy-sarif,sarif-fmt
- name: Build & Check
run: |
cargo vendor > .cargo/config
cargo clippy --all-features --message-format=json | clippy-sarif | tee rust-clippy-results.sarif | sarif-fmt
RUSTDOCFLAGS="-D rustdoc::broken-intra-doc-links" cargo doc --workspace --all-features --no-deps
env:
CARGO_TERM_COLOR: always
- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: rust-clippy-results.sarif
wait-for-processing: true
test:
name: test & collect coverage
runs-on: ubuntu-latest
continue-on-error: true
env:
RUSTFLAGS: -D warnings
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@stable
with:
components: llvm-tools-preview
- uses: Swatinem/rust-cache@v2
- name: Install latest nextest release
uses: taiki-e/install-action@nextest
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@cargo-llvm-cov
- name: Collect coverage data
run: cargo llvm-cov nextest --lcov --output-path lcov.info
- name: Upload coverage data to codecov
uses: codecov/codecov-action@v3
with:
name: tests
files: lcov.info
fuzzing:
name: fuzzing
runs-on: ubuntu-latest
continue-on-error: true
env:
RUSTFLAGS: -D warnings
CARGO_TERM_COLOR: always
steps:
- uses: actions/checkout@v3
- uses: dtolnay/rust-toolchain@master
with:
toolchain: nightly-2023-03-08
- uses: Swatinem/rust-cache@v2
- name: fuzzing
working-directory: ./libs/jwst-codec
run: |
cargo install cargo-fuzz
cargo fuzz run apply_update -- -max_total_time=30
cargo fuzz run codec_doc_any_struct -- -max_total_time=30
cargo fuzz run codec_doc_any -- -max_total_time=30
cargo fuzz run decode_bytes -- -max_total_time=30
cargo fuzz run i64_decode -- -max_total_time=30
cargo fuzz run i64_encode -- -max_total_time=30
# skip due to memory leak
# cargo fuzz run ins_del_text -- -max_total_time=30
cargo fuzz run sync_message -- -max_total_time=30
cargo fuzz run u64_decode -- -max_total_time=30
cargo fuzz run u64_encode -- -max_total_time=30
cargo fuzz run apply_update -- -max_total_time=30
- name: upload fuzz artifacts
if: ${{ failure() }}
uses: actions/upload-artifact@v3
with:
name: fuzz-artifact
path: ./lib/jwst-codec/fuzz/artifacts/**/*