Skip to content
Merged
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
17 changes: 10 additions & 7 deletions ci.sh
Original file line number Diff line number Diff line change
Expand Up @@ -112,27 +112,30 @@ case "$cmd" in
;;
fast|docs|barretenberg|barretenberg-full)
export CI_DASHBOARD="prs"
export JOB_ID="x-$cmd"
bootstrap_ec2 "./bootstrap.sh ci-$cmd"
# Route through multi_job_run (even for a single instance) so the runner-side
# orchestration — including the spot/instance request — is captured into a
# parent dashboard log, matching merge-queue. The job id stays "x-$cmd" so the
# GitHub status check name is unchanged.
multi_job_run "x-$cmd amd64 ci-$cmd"
;;
socket-fix)
export CI_DASHBOARD="prs"
export JOB_ID="x-socket-fix"
export INSTANCE_POSTFIX="socket-fix"
export CPUS=16
bootstrap_ec2 "./bootstrap.sh ci-socket-fix $*"
# Capture the runner-side output (incl. instance request) to a parent dashboard
# log. No denoise here: this is an interactive debug mode where raw output matters.
PARENT_LOG_ID=$RUN_ID bootstrap_ec2 "./bootstrap.sh ci-socket-fix $*" 2>&1 | DUP=1 cache_log "CI run" $RUN_ID
;;
full|full-no-test-cache)
export CI_DASHBOARD="prs"
export JOB_ID="x-$cmd"
export AWS_SHUTDOWN_TIME=75
bootstrap_ec2 "./bootstrap.sh ci-$cmd"
multi_job_run "x-$cmd amd64 ci-$cmd"
;;
chonk-input-update)
export CI_DASHBOARD="prs"
export JOB_ID="x-$cmd"
export AWS_SHUTDOWN_TIME=90
bootstrap_ec2 "./bootstrap.sh ci-chonk-input-update"
multi_job_run "x-$cmd amd64 ci-chonk-input-update"
;;
barretenberg-debug)
export CI_DASHBOARD="nightly"
Expand Down
Loading