-
Notifications
You must be signed in to change notification settings - Fork 240
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
feat: Noir subrepo. #3369
Merged
Merged
feat: Noir subrepo. #3369
Changes from 49 commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
778f6c7
git subrepo clone [email protected]:noir-lang/noir
charlielye b5307cc
Build noir.
charlielye ebda6cd
Arm support.
charlielye 7892094
[ci rebuild noir-x86_64] [ci rebuild noir-arm64]
charlielye 4777acb
[ci rebuild noir]
charlielye ac89576
[ci rebuild noir]
charlielye 637b4f6
[ci rebuild noir]
charlielye 0cbeb36
[ci rebuild noir]
charlielye 6754f48
[ci rebuild noir]
charlielye 73c5397
[ci rebuild noir]
charlielye 675d2f5
[ci rebuild noir]
charlielye 306ff3a
git subrepo pull (merge) noir
charlielye 631f45b
[ci rebuild noir]
charlielye ee47b09
Noir deploy
charlielye 1661475
git subrepo commit (merge) noir
charlielye 74d9048
Move to machine class to get docker
charlielye c13e89d
[ci rebuild noir]
charlielye b09c67c
Alpine release build of noir.
charlielye 61999e7
Remove all the ARCH hacks from build system. Simplify deploy_dockerhub.
charlielye 1ab0800
Remove unused save log stuff.
charlielye 601068e
Fixes. Can trigger dry deploy via cci.
charlielye 6d60019
Try again. Now there is workflow distinction for deploy, but we early…
charlielye fb85b60
fix
charlielye a5113c5
fix
charlielye 8989ca1
fix
charlielye edefa32
fix
charlielye 92379d6
fix
charlielye 7f54df4
fix
charlielye 1fa8c83
fix
charlielye 843123e
Fix version number.
charlielye 18a2f8b
fix
charlielye 8e281e5
fix
charlielye 449cceb
fix
charlielye 3fbc2f0
fix
charlielye 358bcec
fix
charlielye fa8a10d
fix
charlielye 27f53ab
Remove the VERSION files and sanity check test in setup-env.
charlielye cecc803
fix
charlielye bdbbb96
fix
charlielye 1eb9dba
fix
charlielye a77703a
fix
charlielye b61a161
[ci dry-deploy]
charlielye edad1fc
[ci dry-deploy]
charlielye 1777aab
Merge remote-tracking branch 'origin/master' into cl/noir-subrepo
charlielye ac19f40
Merge branch 'master' into cl/noir-subrepo
charlielye ca4ffa5
fix
charlielye b563913
[ci dry-deploy]
charlielye 8e4867b
fix [ci dry-deploy]
charlielye 96566b1
fix [ci dry-deploy]
charlielye 2e6135b
Address review comments. [ci rebuild]
charlielye File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
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 +1 @@ | ||
aztec3-packages | ||
aztec |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,8 @@ | ||
#!/bin/bash | ||
curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg | ||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable" | sudo tee /etc/apt/sources.list.d/docker.list > /dev/null | ||
sudo apt update | ||
sudo apt install -y apt-transport-https ca-certificates curl software-properties-common awscli docker-ce | ||
sudo usermod -aG docker ${USER} | ||
mkdir .aws | ||
echo "Add build-instance credentials to ~/.aws/credentials |
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,9 @@ | ||
#!/bin/bash | ||
[ -n "${BUILD_SYSTEM_DEBUG:-}" ] && set -x # conditionally trace | ||
set -eu | ||
|
||
REPOSITORY=$1 | ||
ARCH=${2:-$(uname -m)} | ||
[ "$ARCH" == "aarch64" ] && ARCH=arm64 | ||
CONTENT_HASH=$(calculate_content_hash $REPOSITORY) | ||
echo "cache-$CONTENT_HASH-$ARCH" |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
#!/bin/bash | ||
[ -n "${BUILD_SYSTEM_DEBUG:-}" ] && set -x # conditionally trace | ||
set -eu | ||
set -euo pipefail | ||
|
||
REPOSITORY=$1 | ||
CPUS=$2 | ||
ARCH=${3:-} | ||
|
||
cond_spot_run_script $REPOSITORY $CPUS build $REPOSITORY | ||
cond_spot_run_script $REPOSITORY $CPUS:$ARCH build $REPOSITORY $ARCH | add_timestamps |
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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
do we want to keep this long term, will not block this pr