Skip to content

Commit dae15e9

Browse files
nhtyyratankalianigithub-actions[bot]
authored
feat: v4.0.1 (#1941)
Co-authored-by: Ratan Kaliani <[email protected]> Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 4a1dcea commit dae15e9

File tree

40 files changed

+446
-346
lines changed

40 files changed

+446
-346
lines changed

.github/workflows/book.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ name: book
55

66
on:
77
push:
8-
branches: [main]
8+
branches: [dev]
99
pull_request:
10-
branches: [main]
10+
branches: [dev]
1111
paths:
1212
- "book/**"
1313
merge_group:
@@ -45,8 +45,8 @@ jobs:
4545
path: book/build
4646

4747
deploy:
48-
# Only deploy if a push to main
49-
if: github.ref_name == 'main' && github.event_name == 'push'
48+
# Only deploy if a push to dev
49+
if: github.ref_name == 'dev' && github.event_name == 'push'
5050
runs-on: ubuntu-latest
5151
needs: [build]
5252

.github/workflows/docker-gnark.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
[
2222
runs-on,
2323
runner=64cpu-linux-arm64,
24+
disk=large,
2425
spot=false,
2526
"run-id=${{ github.run_id }}",
2627
]

.github/workflows/pr.yml

+18-1
Original file line numberDiff line numberDiff line change
@@ -371,4 +371,21 @@ jobs:
371371
- name: "Build examples without lock files"
372372
run: |
373373
cd examples
374-
cargo build --all --all-targets
374+
cargo build --all --all-targets
375+
376+
build-in-host:
377+
name: "Build patches and zkvm in host"
378+
runs-on: [runs-on, runner=16cpu-linux-x64, disk=large, "run-id=${{ github.run_id }}"]
379+
steps:
380+
- name: "Checkout sources"
381+
uses: "actions/checkout@v4"
382+
383+
- name: "Setup CI"
384+
uses: ./.github/actions/setup
385+
with:
386+
pull_token: ${{ secrets.PRIVATE_PULL_TOKEN }}
387+
388+
- name: "Build programs in host"
389+
run: |
390+
cd ./patch-testing/build-host
391+
cargo build

Cargo.lock

+36-36
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)