Skip to content

Commit

Permalink
Update test-template-fastcheck.j2
Browse files Browse the repository at this point in the history
  • Loading branch information
khluu authored Dec 3, 2024
1 parent b3c86bb commit 3a4b04d
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions scripts/test-template-fastcheck.j2
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ steps:
- label: ":docker: build image"
key: image-build
agents:
queue: cpu_queue
queue: cpu_queue_premerge
commands:
- "aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/q9t5s3a7"
- "docker build --build-arg max_jobs=16 --build-arg buildkite_commit=$BUILDKITE_COMMIT --build-arg USE_SCCACHE=1 --tag {{ docker_image }} --target test --progress plain ."
Expand Down Expand Up @@ -38,9 +38,9 @@ steps:
depends_on: image-build
agents:
{% if step.label == "Documentation Build" %}
queue: small_cpu_queue
queue: small_cpu_queue_premerge
{% elif step.no_gpu %}
queue: cpu_queue
queue: cpu_queue_premerge
{% elif step.num_gpus == 2 or step.num_gpus == 4 %}
queue: gpu_4_queue
{% else %}
Expand Down Expand Up @@ -91,9 +91,9 @@ steps:
depends_on: block-{{ step.label | replace(" ", "-") | lower | replace("(", "") | replace(")", "") | replace("%", "") | replace(",", "-") }}
agents:
{% if step.label == "Documentation Build" %}
queue: small_cpu_queue
queue: small_cpu_queue_premerge
{% elif step.no_gpu %}
queue: cpu_queue
queue: cpu_queue_premerge
{% elif step.num_gpus == 2 or step.num_gpus == 4 %}
queue: gpu_4_queue
{% else %}
Expand Down Expand Up @@ -157,7 +157,7 @@ steps:
- label: "{{ step.label }}"
priority: 10000
agents:
queue: a100-queue
queue: a100_queue
soft_fail: {{ step.soft_fail or false }}
{% if step.parallelism %}
parallelism: {{ step.parallelism }}
Expand Down Expand Up @@ -212,7 +212,7 @@ steps:
- label: "TPU Test"
depends_on: ~
agents:
queue: tpu
queue: tpu_queue
commands:
- if [[ -f ".buildkite/run-tpu-test.sh" ]]; then bash .buildkite/run-tpu-test.sh; fi
- yes | docker system prune -a

0 comments on commit 3a4b04d

Please sign in to comment.