-
Notifications
You must be signed in to change notification settings - Fork 598
chore(ci3): refactor ci3.yml, fix external PR flow #12037
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
b52f3c5
d3adeda
373cf84
26266df
d9a97a8
f477cd0
151b98e
d7c1b16
147f969
252619e
181c89b
67d2682
02b9aa0
22924b1
5941481
cb4dcdf
ec467e9
f6faab1
b548d0c
2c08c8c
371988e
5f95bcb
e497028
06bb6b5
0ca7352
771d756
4bab0f1
9f6070b
49243ea
b9a46e1
1a4b7b9
aefebb8
67ad4c7
f7551a4
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -171,6 +171,12 @@ | |
| }, | ||
| "files.trimTrailingWhitespace": true, | ||
| "files.insertFinalNewline": true, | ||
| "[rust]": { | ||
| "files.trimTrailingWhitespace": false | ||
| }, | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bundled request from Tom |
||
| "[noir]": { | ||
| "files.trimTrailingWhitespace": false | ||
| }, | ||
| "cmake.sourceDirectory": "${workspaceFolder}/barretenberg/cpp", | ||
| "typescript.tsserver.maxTsServerMemory": 4096, | ||
| "typescript.tsdk": "yarn-project/node_modules/typescript/lib", | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -27,7 +27,7 @@ Logging goes through the [Logger](yarn-project/foundation/src/log/) module in Ty | |
|
|
||
| ## Releases | ||
|
|
||
| Releases are driven by [release-please](https://github.com/googleapis/release-please), which maintains a 'Release PR' containing an updated CHANGELOG.md since the last release. Triggering a new release is simply a case of merging this PR to master. A [github workflow](./.github/workflows/release_please.yml) will create the tagged release triggering ./bootstrap.sh release to build and deploy the version at that tag. | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bundled |
||
| Releases are driven by [release-please](https://github.com/googleapis/release-please), which maintains a 'Release PR' containing an updated CHANGELOG.md since the last release. Triggering a new release is simply a case of merging this PR to master. A [github workflow](./.github/workflows/release-please.yml) will create the tagged release triggering ./bootstrap.sh release to build and deploy the version at that tag. | ||
|
|
||
| ## Contribute | ||
|
|
||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -152,6 +152,9 @@ function build { | |
|
|
||
| check_toolchains | ||
|
|
||
| # Ensure we have yarn set up. | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bundled |
||
| corepack enable | ||
|
|
||
| projects=( | ||
| noir | ||
| barretenberg | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -22,7 +22,7 @@ Private functions can call another private function, and can request to call a p | |
|
|
||
| Public functions are simulated and proved on the sequencer side, and verified by the public kernel circuit. | ||
|
|
||
| The public inputs of public functions is defined [here](../circuits.js/src/structs/avm_circuit_public_inputs.ts). | ||
| The public inputs of public functions is defined [here](../circuits.js/src/structs/avm/avm_circuit_public_inputs.ts). | ||
|
|
||
| They are run with the assistance of an oracle that provides any value read from the public state tree. | ||
|
Collaborator
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. bundled |
||
|
|
||
|
|
@@ -35,7 +35,7 @@ They are not proved, and are simulated client-side. | |
|
|
||
| They are run with the assistance of a DB oracle that provides any private data requested by the function. | ||
|
|
||
| At the moment, unconstrained functions cannot call any other function. | ||
| At the moment, unconstrained functions cannot call any other function. | ||
| It would be possible to allow them to call other unconstrained functions. | ||
|
|
||
| ## Usage | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.