Skip to content
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

fix(ci,noir-projects): bring apt-get higher in cache #5775

Merged
merged 2 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
ebs_cache_size_gb: 256
runner_concurrency: 50
subaction: ${{ github.event.inputs.runner_action || 'start' }}
ec2_instance_type: m6a.48xlarge
ec2_instance_type: m6a.32xlarge
ec2_ami_id: ami-04d8422a9ba4de80f
ec2_instance_ttl: 40 # refreshed by jobs
secrets: inherit
Expand Down
2 changes: 1 addition & 1 deletion noir-projects/Earthfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
VERSION 0.8
FROM ubuntu:lunar
RUN apt-get update && apt-get install -y parallel

# Install nargo
COPY ../noir/+nargo/nargo /usr/bin/nargo
Expand All @@ -17,7 +18,6 @@ source:

build:
FROM +source
RUN apt-get update && apt-get install -y parallel
RUN cd noir-contracts && NARGO=nargo TRANSPILER=avm-transpiler ./bootstrap.sh
RUN cd noir-protocol-circuits && NARGO=nargo ./bootstrap.sh
SAVE ARTIFACT aztec-nr
Expand Down
Loading