Skip to content

Commit 20690d1

Browse files
committed
address Matt's review
1 parent 4e3fc93 commit 20690d1

File tree

3 files changed

+3
-5
lines changed

3 files changed

+3
-5
lines changed

.github/workflows/build-bindings.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,6 @@ jobs:
3232
cd src/bindings
3333
git diff --exit-code
3434
- name: add build to gc-root if on main
35-
# enabeling on this branch for 1 commit to test it
3635
if: github.ref == 'refs/heads/main'
3736
run: |
3837
nix build o1js#o1js-bindings --out-link /home/app/actions-runner/nix-cache/main-bindings-gcroot

flake.nix

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,10 +104,10 @@
104104
''
105105
if [ "$1" = run ] && { [ "$2" = nightly-2023-09-01 ] || [ "$2" = 1.72-x86_64-unknowl-linux-gnu ]; }
106106
then
107-
echo USING NIX TOOLCHAIN
107+
echo using nix toolchain
108108
${rustup}/bin/rustup run nix "''${@:3}"
109109
else
110-
echo escape rustup "$@"
110+
echo using plain rustup "$@"
111111
${rustup}/bin/rustup "$@"
112112
fi
113113
'';
@@ -184,7 +184,6 @@
184184
test-vectors = rust-platform.buildRustPackage {
185185
src = pkgs.lib.sourceByRegex ./src/mina/src
186186
[
187-
"^lib(/crypto(/kimchi_bindings(/stubs(/.*)?)?)?)?$"
188187
"^lib(/crypto(/proof-systems(/.*)?)?)?$"
189188
];
190189
sourceRoot = "source/lib/crypto/proof-systems/poseidon/export_test_vectors";

pin.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ git submodule sync && git submodule update --init --recursive
99
# Add the flake registry entry
1010
nix registry add o1js "git+file://$ROOT?submodules=1"
1111
# update mina input to local submodule
12-
# --override-input seems redundant but fixes a cacheing issue with local paths
12+
# --override-input seems redundant but fixes a caching issue with local paths
1313
nix flake update mina --override-input mina 'path:src/mina' --flake '.?submodules=1'
1414
popd

0 commit comments

Comments
 (0)