-
Notifications
You must be signed in to change notification settings - Fork 292
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: run noir-packages-test in Earthly (#6174)
- Loading branch information
Showing
5 changed files
with
211 additions
and
36 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
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
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 |
---|---|---|
@@ -0,0 +1,87 @@ | ||
# Must include the .gitignore for all child projects as this is used by Earthly | ||
# Note due to how we use Eartlhy each .gitignore MUST accompany any earthfile that might actually copy these artifacts | ||
**/Earthfile | ||
**/Readme.md | ||
**/Dockerfile* | ||
**/docker-compose*.yml | ||
|
||
# root .gitignore contents | ||
dest | ||
node_modules | ||
.cache | ||
scripts/.earthly | ||
.pnp.cjs | ||
.pnp.loader.mjs | ||
build/ | ||
.idea | ||
cmake-build-debug | ||
.terraform* | ||
.bootstrapped | ||
.tsbuildinfo | ||
|
||
# Local Netlify folder | ||
.netlify | ||
|
||
.graphite* | ||
.DS_Store | ||
|
||
**/*.dockerignore | ||
|
||
# Earthly | ||
.arg | ||
.secret | ||
|
||
# ./ .gitignore contents: | ||
**/package.tgz | ||
packages | ||
|
||
# ./noir-repo/ .gitignore contents: | ||
/target | ||
.DS_Store | ||
examples/**/target/ | ||
examples/9 | ||
node_modules | ||
pkg/ | ||
.idea | ||
|
||
# Yarn | ||
.pnp.* | ||
.yarn/* | ||
!.yarn/patches | ||
!.yarn/plugins | ||
!.yarn/releases | ||
!.yarn/sdks | ||
!.yarn/versions | ||
|
||
# Noir.js | ||
tooling/noir_js/lib | ||
|
||
# Nargo output | ||
*.proof | ||
*.acir | ||
*.acir.sha256 | ||
*.tr | ||
*.pk | ||
*.vk | ||
**/Verifier.toml | ||
**/contract | ||
**/target | ||
!test_programs/acir_artifacts/*/target | ||
!test_programs/acir_artifacts/*/target/witness.gz | ||
!compiler/wasm/noir-script/target | ||
|
||
gates_report.json | ||
|
||
# Github Actions scratch space | ||
# This gives a location to download artifacts into the repository in CI without making git dirty. | ||
libbarretenberg-wasm32 | ||
|
||
# Wasm build atifacts | ||
compiler/wasm/nodejs | ||
compiler/wasm/web | ||
tooling/noirc_abi_wasm/nodejs | ||
tooling/noirc_abi_wasm/web | ||
tooling/noir_js/lib | ||
|
||
# docs autogen build | ||
/docs/docs/noir_js/reference/ |
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