Skip to content

Commit 1f6e81f

Browse files
committed
Separate model and feature support matrices by category (#1100)
Signed-off-by: Teresa Chen <boe20211@gmail.com>
1 parent 8b9eb96 commit 1f6e81f

File tree

2 files changed

+17
-17
lines changed

2 files changed

+17
-17
lines changed

.buildkite/main.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
x-run-condition: &run-on-nightly-or-tag
22
if: build.env("NIGHTLY") == "1" || build.tag =~ /^v?[0-9]+(\.[a-zA-Z0-9]+)*([a-zA-Z]+[0-9]*)?$/
33

4-
# notify:
5-
# - email: "buganizer-system+1445761+p1@google.com"
6-
# if: build.state == "failed"
4+
notify:
5+
- email: "buganizer-system+1445761+p1@google.com"
6+
if: build.state == "failed"
77

88
steps:
99
- label: "Upload Tests for Models & Features"
10-
#<<: *run-on-nightly-or-tag
10+
<<: *run-on-nightly-or-tag
1111
agents:
1212
queue: cpu
1313
commands:
@@ -17,7 +17,7 @@ steps:
1717
continue_on_failure: true # ensure we still generate support matrices even if some tests fail
1818

1919
- label: "Generate support matrices"
20-
#<<: *run-on-nightly-or-tag
20+
<<: *run-on-nightly-or-tag
2121
key: generate_support_matrices
2222
agents:
2323
queue: cpu
@@ -44,13 +44,13 @@ steps:
4444
# # TODO : record verified vllm-tpu_inference commit hash pair if test successful (to be handled in separate PR)
4545
# - echo "committing verified commit hashes"
4646
#
47-
# - label: "Commit support matrices"
48-
# <<: *run-on-nightly-or-tag
49-
# key: commit_nightly_support_matrices
50-
# depends_on: generate_support_matrices
51-
# agents:
52-
# queue: cpu
53-
# secrets:
54-
# - GITHUB_PAT
55-
# command:
56-
# - bash .buildkite/scripts/commit_support_matrices.sh
47+
- label: "Commit support matrices"
48+
<<: *run-on-nightly-or-tag
49+
key: commit_nightly_support_matrices
50+
depends_on: generate_support_matrices
51+
agents:
52+
queue: cpu
53+
secrets:
54+
- GITHUB_PAT
55+
command:
56+
- bash .buildkite/scripts/commit_support_matrices.sh

.buildkite/scripts/bootstrap.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ else
2121
fi
2222

2323
upload_pipeline() {
24-
#buildkite-agent pipeline upload .buildkite/pipeline_jax.yml
24+
buildkite-agent pipeline upload .buildkite/pipeline_jax.yml
2525
# buildkite-agent pipeline upload .buildkite/pipeline_torch.yml
2626
buildkite-agent pipeline upload .buildkite/main.yml
27-
#buildkite-agent pipeline upload .buildkite/nightly_releases.yml
27+
buildkite-agent pipeline upload .buildkite/nightly_releases.yml
2828
}
2929

3030
echo "--- Starting Buildkite Bootstrap ---"

0 commit comments

Comments
 (0)