Skip to content

Commit 462c9e4

Browse files
nyunyunyunyujonathanpwang
authored andcommitted
Use private repo for stark-backend (#11)
1 parent ec77de8 commit 462c9e4

16 files changed

+322
-219
lines changed

.github/workflows/benchmark-call.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ on:
105105
description: Host features, comma separated (aggregation,profiling)
106106

107107
env:
108-
S3_METRICS_PATH: s3://openvm-public-data-sandbox-us-east-1/benchmark/github/metrics
108+
S3_METRICS_PATH: s3://axiom-public-data-sandbox-us-east-1/benchmark/github/metrics
109109
FEATURE_FLAGS: "bench-metrics,parallel,nightly-features"
110110
INPUT_ARGS: ""
111111
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
@@ -128,6 +128,9 @@ jobs:
128128
##########################################################################
129129
# Environment setup #
130130
##########################################################################
131+
- uses: webfactory/[email protected]
132+
with:
133+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
131134
- uses: actions/checkout@v4
132135
with:
133136
ref: ${{ github.event.pull_request.head.sha || github.sha }}

.github/workflows/benchmarks.yml

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ env:
4545
CURRENT_SHA: ${{ github.event.pull_request.head.sha || github.sha }}
4646
REPO: ${{ github.event.pull_request.head.repo.full_name || github.repository }}
4747
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
48-
S3_METRICS_PATH: s3://openvm-public-data-sandbox-us-east-1/benchmark/github/metrics
49-
S3_MD_PATH: s3://openvm-public-data-sandbox-us-east-1/benchmark/github/results
50-
S3_FLAMEGRAPHS_PATH: s3://openvm-public-data-sandbox-us-east-1/benchmark/github/flamegraphs
48+
S3_METRICS_PATH: s3://axiom-public-data-sandbox-us-east-1/benchmark/github/metrics
49+
S3_MD_PATH: s3://axiom-public-data-sandbox-us-east-1/benchmark/github/results
50+
S3_FLAMEGRAPHS_PATH: s3://axiom-public-data-sandbox-us-east-1/benchmark/github/flamegraphs
5151
FEATURE_FLAGS: ""
5252

5353
permissions:
@@ -62,6 +62,9 @@ jobs:
6262
outputs:
6363
matrix: ${{ steps.create-matrix.outputs.matrix }}
6464
steps:
65+
- uses: webfactory/[email protected]
66+
with:
67+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
6568
- uses: actions/checkout@v4
6669
with:
6770
ref: ${{ env.CURRENT_SHA }}
@@ -165,6 +168,9 @@ jobs:
165168
##########################################################################
166169
# Download individual result .md files from S3 and combine them #
167170
##########################################################################
171+
- uses: webfactory/[email protected]
172+
with:
173+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
168174
- uses: actions/checkout@v4
169175
with:
170176
ref: ${{ env.CURRENT_SHA }}
@@ -262,6 +268,9 @@ jobs:
262268
##########################################################################
263269
# Update benchmark-results branch with summary #
264270
##########################################################################
271+
- uses: webfactory/[email protected]
272+
with:
273+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
265274
- uses: actions/checkout@v4
266275
with:
267276
ref: benchmark-results

.github/workflows/build.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- extras=s3-cache
2020
steps:
2121
- uses: runs-on/action@v1
22+
- uses: webfactory/[email protected]
23+
with:
24+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
2225
- uses: actions/checkout@v4
2326
- uses: dtolnay/rust-toolchain@stable
2427
- uses: Swatinem/rust-cache@v2

.github/workflows/cli.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@ jobs:
2929

3030
steps:
3131
- uses: runs-on/action@v1
32+
- uses: webfactory/[email protected]
33+
with:
34+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
3235
- uses: actions/checkout@v4
3336
- uses: dtolnay/rust-toolchain@nightly
3437
- uses: Swatinem/rust-cache@v2

.github/workflows/docs.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ jobs:
2424
- runs-on=${{ github.run_id }}
2525
- runner=8cpu-linux-arm64
2626
steps:
27+
- uses: webfactory/[email protected]
28+
with:
29+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
2730
- uses: actions/checkout@v4
2831
- name: Set up Rust toolchain
2932
uses: dtolnay/rust-toolchain@nightly

.github/workflows/extension-tests.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,9 @@ jobs:
4343

4444
steps:
4545
- uses: runs-on/action@v1
46+
- uses: webfactory/[email protected]
47+
with:
48+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
4649
- uses: actions/checkout@v4
4750
- uses: dorny/paths-filter@v3
4851
id: filter

.github/workflows/lints.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@ jobs:
1919
- extras=s3-cache
2020
steps:
2121
- uses: runs-on/action@v1
22+
- uses: webfactory/[email protected]
23+
with:
24+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
2225
- uses: actions/checkout@v4
2326

2427
- uses: codespell-project/actions-codespell@v2

.github/workflows/native-compiler.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727

2828
steps:
2929
- uses: runs-on/action@v1
30+
- uses: webfactory/[email protected]
31+
with:
32+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
3033
- uses: actions/checkout@v4
3134
- uses: dtolnay/rust-toolchain@nightly
3235
- uses: Swatinem/rust-cache@v2

.github/workflows/primitives.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727

2828
steps:
2929
- uses: runs-on/action@v1
30+
- uses: webfactory/[email protected]
31+
with:
32+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
3033
- uses: actions/checkout@v4
3134
- uses: dtolnay/rust-toolchain@stable
3235
- uses: Swatinem/rust-cache@v2

.github/workflows/publish-mdbook.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ jobs:
1717
runs-on: ubuntu-latest
1818

1919
steps:
20+
- uses: webfactory/[email protected]
21+
with:
22+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
2023
- name: Checkout repository
2124
uses: actions/checkout@v4
2225
with:

.github/workflows/recursion.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828

2929
steps:
3030
- uses: runs-on/action@v1
31+
- uses: webfactory/[email protected]
32+
with:
33+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
3134
- uses: actions/checkout@v4
3235
- uses: dtolnay/rust-toolchain@stable
3336
- uses: Swatinem/rust-cache@v2

.github/workflows/riscv.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,9 @@ jobs:
3131

3232
steps:
3333
- uses: runs-on/action@v1
34+
- uses: webfactory/[email protected]
35+
with:
36+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
3437
- uses: actions/checkout@v4
3538
- uses: dtolnay/rust-toolchain@master
3639
with:

.github/workflows/sdk.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ jobs:
2828

2929
steps:
3030
- uses: runs-on/action@v1
31+
- uses: webfactory/[email protected]
32+
with:
33+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
3134
- uses: actions/checkout@v4
3235
- uses: dtolnay/rust-toolchain@stable
3336
- uses: Swatinem/rust-cache@v2

.github/workflows/vm.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ jobs:
2727

2828
steps:
2929
- uses: runs-on/action@v1
30+
- uses: webfactory/[email protected]
31+
with:
32+
ssh-private-key: ${{ secrets.GH_ACTIONS_DEPLOY_PRIVATE_KEY }}
3033
- uses: actions/checkout@v4
3134
- uses: dtolnay/rust-toolchain@stable
3235
- uses: Swatinem/rust-cache@v2

0 commit comments

Comments
 (0)