Skip to content

Commit 9b9919b

Browse files
authored
Add reusable_ prefix for reusable workflows. (#411)
1 parent 8766c4a commit 9b9919b

11 files changed

+10
-10
lines changed

.github/workflows/build_tests.yaml

+10-10
Original file line numberDiff line numberDiff line change
@@ -118,20 +118,20 @@ jobs:
118118
concurrency: # We support one build or nightly test to run at a time currently.
119119
group: linter-${{needs.set-variables.outputs.run-id}}
120120
cancel-in-progress: true
121-
uses: ./.github/workflows/lint_and_format.yml
121+
uses: ./.github/workflows/reusable_lint_and_format.yml
122122
with:
123123
run-id: '${{needs.set-variables.outputs.run-id}}'
124124
run-unit-tests:
125125
needs: [install-dependencies, set-variables]
126-
uses: ./.github/workflows/unit_tests.yaml
126+
uses: ./.github/workflows/reusable_unit_tests.yaml
127127
with:
128128
run-id: ${{needs.set-variables.outputs.run-id}}
129129
concurrency: # We support one build or nightly test to run at a time currently.
130130
group: unit-tests-${{needs.set-variables.outputs.run-id}}
131131
cancel-in-progress: true
132132
run-integration-tests:
133133
needs: [install-dependencies, set-variables]
134-
uses: ./.github/workflows/integration_tests.yaml
134+
uses: ./.github/workflows/reusable_integration_tests.yaml
135135
with:
136136
run-id: '${{needs.set-variables.outputs.run-id}}'
137137
concurrency: # We support one build or nightly test to run at a time currently.
@@ -140,7 +140,7 @@ jobs:
140140
secrets: inherit
141141
cluster-private:
142142
needs: [linter, run-unit-tests, run-integration-tests, set-variables]
143-
uses: ./.github/workflows/cluster_private.yaml
143+
uses: ./.github/workflows/reusable_cluster_private.yaml
144144
concurrency: # We support one build or nightly test to run at a time currently.
145145
group: cluster-private-${{needs.set-variables.outputs.run-id}}
146146
cancel-in-progress: true
@@ -156,7 +156,7 @@ jobs:
156156
concurrency: # We support one build or nightly test to run at a time currently.
157157
group: cluster-create-${{needs.set-variables.outputs.run-id}}
158158
cancel-in-progress: true
159-
uses: ./.github/workflows/cluster_create.yaml
159+
uses: ./.github/workflows/reusable_cluster_create.yaml
160160
with:
161161
cluster-name: '${{needs.set-variables.outputs.cluster-name}}'
162162
tpu-type: '${{needs.set-variables.outputs.tpu-type || inputs.tpu-type}}'
@@ -166,7 +166,7 @@ jobs:
166166
secrets: inherit
167167
workloads-tests:
168168
needs: [cluster-create, set-variables]
169-
uses: ./.github/workflows/workload_test.yaml
169+
uses: ./.github/workflows/reusable_workload_tests.yaml
170170
concurrency: # We support one build or nightly test to run at a time currently.
171171
group: workload-tests-${{needs.set-variables.outputs.run-id}}
172172
cancel-in-progress: true
@@ -178,7 +178,7 @@ jobs:
178178
secrets: inherit
179179
batch-tests:
180180
needs: [cluster-create, set-variables]
181-
uses: ./.github/workflows/batch_test.yaml
181+
uses: ./.github/workflows/reusable_batch_tests.yaml
182182
concurrency: # We support one build or nightly test to run at a time currently.
183183
group: batch-tests-${{needs.set-variables.outputs.run-id}}
184184
cancel-in-progress: true
@@ -189,7 +189,7 @@ jobs:
189189
secrets: inherit
190190
filestore-tests:
191191
needs: [cluster-create, set-variables, batch-tests, workloads-tests]
192-
uses: ./.github/workflows/filestore_tests.yaml
192+
uses: ./.github/workflows/reusable_filestore_tests.yaml
193193
concurrency: # We support one build or nightly test to run at a time currently.
194194
group: filestore-tests-${{needs.set-variables.outputs.run-id}}
195195
cancel-in-progress: true
@@ -202,7 +202,7 @@ jobs:
202202
secrets: inherit
203203
fuse-tests:
204204
needs: [filestore-tests, set-variables]
205-
uses: ./.github/workflows/fuse_tests.yaml
205+
uses: ./.github/workflows/reusable_fuse_tests.yaml
206206
concurrency: # We support one build or nightly test to run at a time currently.
207207
group: fuse-tests-${{needs.set-variables.outputs.run-id}}
208208
cancel-in-progress: true
@@ -216,7 +216,7 @@ jobs:
216216
cluster-delete:
217217
if: always()
218218
needs: [set-variables, fuse-tests]
219-
uses: ./.github/workflows/cluster_delete.yaml
219+
uses: ./.github/workflows/reusable_cluster_delete.yaml
220220
with:
221221
cluster-name: ${{needs.set-variables.outputs.cluster-name}}
222222
run-id: ${{needs.set-variables.outputs.run-id}}

0 commit comments

Comments
 (0)