-
Notifications
You must be signed in to change notification settings - Fork 5
49 lines (39 loc) · 1.04 KB
/
web-prover.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
name: web-prover
on:
push:
branches: ["main"]
pull_request:
branches: ["*"]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check:
uses: ./.github/workflows/check.yaml
coverage:
needs: ["check"]
uses: ./.github/workflows/coverage.yaml
with:
web-prover-circuits-cache-key: ${{ needs.web-prover-circuits.outputs.cache-key }}
secrets: inherit
build_notary:
uses: ./.github/workflows/build_notary.yaml
build_client_native:
uses: ./.github/workflows/build_client_native.yaml
release:
if: github.ref == 'refs/heads/main'
needs:
- build_notary
uses: ./.github/workflows/release.yaml
deploy_notary_staging:
if: github.ref == 'refs/heads/main'
needs:
- build_notary
uses: ./.github/workflows/deploy_notary_staging.yaml
secrets: inherit
deploy_notary_staging_gcs:
if: github.ref == 'refs/heads/main'
needs:
- build_notary
uses: ./.github/workflows/deploy_notary_staging_gcs.yaml
secrets: inherit