Skip to content

Commit

Permalink
chore: enforce immutable yarn installs in CI (AztecProtocol#3964)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Jan 12, 2024
1 parent f3ee0b9 commit f3104ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion noir/acvm-repo/brillig/src/black_box.rs
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ pub enum BlackBoxOp {
PedersenHash { inputs: HeapVector, domain_separator: RegisterIndex, output: RegisterIndex },
/// Performs scalar multiplication over the embedded curve.
FixedBaseScalarMul { low: RegisterIndex, high: RegisterIndex, result: HeapArray },
/// Performs addtion over the embedded curve.
/// Performs addition over the embedded curve.
EmbeddedCurveAdd {
input1_x: RegisterIndex,
input1_y: RegisterIndex,
Expand Down
2 changes: 1 addition & 1 deletion noir/scripts/bootstrap_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ else
export GIT_COMMIT=$(git rev-parse --verify HEAD)
fi

yarn
yarn --immutable
yarn build

# We create a folder called packages, that contains each package as it would be published to npm, named correctly.
Expand Down
4 changes: 2 additions & 2 deletions noir/scripts/test_js_packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,10 @@ fi
cargo build --release
export PATH="${PATH}:/usr/src/noir/target/release/"

yarn
yarn --immutable
yarn build
npx playwright install
npx playwright install-deps

./scripts/test.sh
yarn test
yarn test

0 comments on commit f3104ac

Please sign in to comment.