Skip to content

Commit c58cd76

Browse files
authored
chore(ci): allow transpiler build to fail in sync PR creation (#19537)
We ignore a non-zero error code from running `cargo check` on the transpiler now so that we just get the minimal lockfile changes but don't care if the transpiler doesn't build anymore.
2 parents b37c199 + e6aa3ed commit c58cd76

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/pull-noir.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ jobs:
6666
git fetch --tags
6767
git checkout ${{ steps.noir_versions.outputs.latest_nightly }}
6868
cd ../..
69-
cargo check --manifest-path avm-transpiler/Cargo.toml
69+
# Update Cargo.lock if needed, but don't fail if transpiler no longer builds
70+
cargo check --manifest-path avm-transpiler/Cargo.toml || true
7071
git add noir/noir-repo avm-transpiler/Cargo.lock
7172
7273
- name: Check for existing PR

0 commit comments

Comments
 (0)