Skip to content
Open
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
6 changes: 3 additions & 3 deletions .buildkite/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ steps:
- label: "Triggering Pipelines (Pull Request)"
if: build.branch != "main" && build.tag == null
agents:
queue: "juliagpu"
queue: "cuda"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

Running the pipeline upload step on the "cuda" queue occupies a GPU agent for a non-GPU task, which can lead to inefficient resource utilization and longer wait times for actual GPU tests. If a lightweight or default CPU queue is available in the new cluster, using it for pipeline uploads is highly recommended.

plugins:
- monebag/monorepo-diff#v2.5.9:
diff: ".buildkite/scripts/diff.sh $BUILDKITE_COMMIT"
Expand All @@ -17,10 +17,10 @@ steps:
config:
command: "buildkite-agent pipeline upload .buildkite/testing.yml"
agents:
queue: "juliagpu"
queue: "cuda"

- label: "Triggering Pipelines (Main Branch / Tag)"
if: build.branch == "main" || build.tag != null
agents:
queue: "juliagpu"
queue: "cuda"
command: "buildkite-agent pipeline upload .buildkite/testing.yml"
6 changes: 2 additions & 4 deletions .buildkite/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,7 @@ steps:
- src
- ext
agents:
queue: "juliagpu"
cuda: "*"
queue: "cuda"
if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip ci\]/
timeout_in_minutes: 120
matrix:
Expand Down Expand Up @@ -45,8 +44,7 @@ steps:
# JULIA_AMDGPU_HIP_MUST_LOAD: "1"
# JULIA_AMDGPU_DISABLE_ARTIFACTS: "1"
# agents:
# queue: "juliagpu"
# rocm: "*"
# queue: "rocm"
# rocmgpu: "*"
# if: build.message !~ /\[skip tests\]/ && build.message !~ /\[skip ci\]/
# timeout_in_minutes: 60
Expand Down
Loading