-
Notifications
You must be signed in to change notification settings - Fork 229
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
# Description ## Problem\* Resolves #4009 ## Summary\* Aiming to be the dumbest way to get CI passing again. ## Additional Context ## Documentation\* Check one: - [ ] No documentation needed. - [ ] Documentation included in this PR. - [ ] **[Exceptional Case]** Documentation to be submitted in a separate PR. # PR Checklist\* - [ ] I have tested the changes locally. - [ ] I have formatted the changes with [Prettier](https://prettier.io/) and/or `cargo fmt` on default settings.
- Loading branch information
1 parent
eb79166
commit 37272b9
Showing
3 changed files
with
9 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,7 @@ | ||
#!/bin/bash | ||
set -eu | ||
|
||
.github/scripts/noirc-abi-build.sh | ||
|
||
.github/scripts/install_wasm-bindgen.sh | ||
yarn workspace @noir-lang/noir_wasm build | ||
yarn workspace @noir-lang/noir_wasm build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,7 @@ | ||
#!/bin/bash | ||
|
||
cd ./compiler/wasm/fixtures | ||
for dir in $(ls -d */); do | ||
pushd $dir/noir-script | ||
nargo compile | ||
popd | ||
done | ||
fixtures_dir="./compiler/wasm/test/fixtures" | ||
|
||
nargo compile --program-dir=$fixtures_dir/noir-contract | ||
nargo compile --program-dir=$fixtures_dir/simple | ||
nargo compile --program-dir=$fixtures_dir/with-deps |