-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
aaeddb8
commit 89aae39
Showing
4 changed files
with
93 additions
and
16 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 |
---|---|---|
|
@@ -27,7 +27,7 @@ runs: | |
- name: Install Nargo | ||
uses: noir-lang/[email protected] | ||
with: | ||
toolchain: ${{ inputs.version == 'latest' && 'stable' || inputs.version }} | ||
toolchain: ${{ inputs.version }} | ||
|
||
- name: Use Nargo | ||
run: nargo --version | ||
|
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,43 @@ | ||
const { writeFileSync } = require('fs'); | ||
|
||
async function main() { | ||
const fetchOpts = { | ||
headers: {}, | ||
}; | ||
|
||
if (process.env.GITHUB_TOKEN) | ||
fetchOpts.headers = { Authorization: `token ${process.env.GITHUB_TOKEN}` }; | ||
|
||
const res = await fetch('https://api.github.com/repos/noir-lang/noir/releases', fetchOpts); | ||
|
||
const data = await res.json(); | ||
|
||
const latestStable = data | ||
.filter(release => !release.tag_name.includes('aztec')) | ||
.filter(release => !release.prerelease) | ||
.map(release => release.tag_name) | ||
.shift(); | ||
|
||
// const latestNightly = data | ||
// .filter(release => !release.tag_name.includes('aztec')) | ||
// .filter(release => release.prerelease) | ||
// .map(release => release.tag_name) | ||
// .shift(); | ||
|
||
// for (let release of releases) { | ||
// const tagName = release.tag_name; | ||
// const tagRes = await fetch( | ||
// `https://api.github.com/repos/noir-lang/noir/git/ref/tags/${tagName}`, | ||
// fetchOpts, | ||
// ); | ||
// const tagData = await tagRes.json(); | ||
|
||
// // Attach commit SHA to release | ||
// release.commit_sha = tagData.object.sha; | ||
// } | ||
|
||
// const output = JSON.stringify([latestStable]); | ||
console.log(JSON.stringify([latestStable])); // DON'T REMOVE, GITHUB WILL CAPTURE THIS OUTPUT | ||
} | ||
|
||
main(); |
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 |
---|---|---|
|
@@ -756,10 +756,10 @@ | |
"@nodelib/fs.scandir" "2.1.5" | ||
fastq "^1.6.0" | ||
|
||
"@noir-lang/acvm_js@0.35.0": | ||
version "0.35.0" | ||
resolved "https://registry.yarnpkg.com/@noir-lang/acvm_js/-/acvm_js-0.35.0.tgz#81130d0236c259b2fb47b0d8efc577bbb5ee18f9" | ||
integrity sha512-LiQUSF3P4/1VGfMZc0hSivLs4oiPsRt+ADFBMF7sOg4oaImeQ4L6tu0Og2Wh1Pc0k2y1EXdv1EKxN2N1WRDdKg== | ||
"@noir-lang/acvm_js@0.37.1": | ||
version "0.37.1" | ||
resolved "https://registry.yarnpkg.com/@noir-lang/acvm_js/-/acvm_js-0.37.1.tgz#5cf3523a4a07e6c0cad95084afa633ce2e9d5600" | ||
integrity sha512-VBAq2XoyTnxQyjJ6YNwnWMFZRZfPedJRm+tazDhzcilk85gzjet+yvDWB7VekjG3VY3q+WFo8zI9xbltoTTmPg== | ||
|
||
"@noir-lang/backend_barretenberg@^0.19.4": | ||
version "0.19.4" | ||
|
@@ -770,14 +770,14 @@ | |
"@noir-lang/types" "0.19.4" | ||
fflate "^0.8.0" | ||
|
||
"@noir-lang/noir_js@^0.19.4": | ||
version "0.19.4" | ||
resolved "https://registry.yarnpkg.com/@noir-lang/noir_js/-/noir_js-0.19.4.tgz#e71fc27e28a17cd03b21e498aaaf0f901b2bb75e" | ||
integrity sha512-V/3jLoor3dMuYuv0ad154M0Ko1xZWxx0qoRDLC/Y/xMH5Wbe5yH4yOvBjCXzQ0dLG5JX1IWGOCC7xxzpStk+hA== | ||
"@noir-lang/noir_js@^0.21.0": | ||
version "0.21.0" | ||
resolved "https://registry.yarnpkg.com/@noir-lang/noir_js/-/noir_js-0.21.0.tgz#df9ceaee68cb186c5cd816dc6176f6eb6ccf7db3" | ||
integrity sha512-KqB5HAC64WGc1yddxAycbDUaUICp5F0foTLgtjQzJLLxRSxlQEa3uomtoLV0ocCFdF4MQd9S6tywgehHVTwvoQ== | ||
dependencies: | ||
"@noir-lang/acvm_js" "0.35.0" | ||
"@noir-lang/noirc_abi" "0.19.4" | ||
"@noir-lang/types" "0.19.4" | ||
"@noir-lang/acvm_js" "0.37.1" | ||
"@noir-lang/noirc_abi" "0.21.0" | ||
"@noir-lang/types" "0.21.0" | ||
|
||
"@noir-lang/noir_wasm@^0.19.4": | ||
version "0.19.4" | ||
|
@@ -789,6 +789,11 @@ | |
resolved "https://registry.yarnpkg.com/@noir-lang/noirc_abi/-/noirc_abi-0.19.4.tgz#a51e76efabf70d49de92ca0a114ef5721ab857a4" | ||
integrity sha512-g3fa3rVGyvnqu1BQdXytCPzIFQDvK1kH9uMjNrEz5UG/LKl+EPvIl1Te8FcOsSi5/eVSbMWveyz3HJu+SwMjDQ== | ||
|
||
"@noir-lang/[email protected]": | ||
version "0.21.0" | ||
resolved "https://registry.yarnpkg.com/@noir-lang/noirc_abi/-/noirc_abi-0.21.0.tgz#00d9771e79855375dd00d0f978dc823fa3b9f35e" | ||
integrity sha512-vVM1QRTFecZdCXminhgoW3sBsZJMsHOO+Sh8rG353r+n4GSgNR/oP3OQEOHlaJgq2wT9hCqcFU4gT954DfzawA== | ||
|
||
"@noir-lang/source-resolver@^0.19.4": | ||
version "0.19.4" | ||
resolved "https://registry.yarnpkg.com/@noir-lang/source-resolver/-/source-resolver-0.19.4.tgz#cd1fb5909e783f45ccd8ee90fbd9bba406da0634" | ||
|
@@ -801,6 +806,13 @@ | |
dependencies: | ||
"@noir-lang/noirc_abi" "0.19.4" | ||
|
||
"@noir-lang/[email protected]": | ||
version "0.21.0" | ||
resolved "https://registry.yarnpkg.com/@noir-lang/types/-/types-0.21.0.tgz#c64d9b25c48522c4b5edadd657bcaddf6c872b21" | ||
integrity sha512-v6CC04mvydBOGMVRCQd9Ytvz5Bjn0pGCE5ENDD+ROjs6+U5wShW5InFBQu5j9UixKybYUtuXk+5TMpuJ/yagog== | ||
dependencies: | ||
"@noir-lang/noirc_abi" "0.21.0" | ||
|
||
"@nomicfoundation/[email protected]": | ||
version "5.0.2" | ||
resolved "https://registry.yarnpkg.com/@nomicfoundation/ethereumjs-block/-/ethereumjs-block-5.0.2.tgz#13a7968f5964f1697da941281b7f7943b0465d04" | ||
|