@@ -118,20 +118,20 @@ jobs:
118
118
concurrency : # We support one build or nightly test to run at a time currently.
119
119
group : linter-${{needs.set-variables.outputs.run-id}}
120
120
cancel-in-progress : true
121
- uses : ./.github/workflows/lint_and_format .yml
121
+ uses : ./.github/workflows/reusable_lint_and_format .yml
122
122
with :
123
123
run-id : ' ${{needs.set-variables.outputs.run-id}}'
124
124
run-unit-tests :
125
125
needs : [install-dependencies, set-variables]
126
- uses : ./.github/workflows/unit_tests .yaml
126
+ uses : ./.github/workflows/reusable_unit_tests .yaml
127
127
with :
128
128
run-id : ${{needs.set-variables.outputs.run-id}}
129
129
concurrency : # We support one build or nightly test to run at a time currently.
130
130
group : unit-tests-${{needs.set-variables.outputs.run-id}}
131
131
cancel-in-progress : true
132
132
run-integration-tests :
133
133
needs : [install-dependencies, set-variables]
134
- uses : ./.github/workflows/integration_tests .yaml
134
+ uses : ./.github/workflows/reusable_integration_tests .yaml
135
135
with :
136
136
run-id : ' ${{needs.set-variables.outputs.run-id}}'
137
137
concurrency : # We support one build or nightly test to run at a time currently.
@@ -140,7 +140,7 @@ jobs:
140
140
secrets : inherit
141
141
cluster-private :
142
142
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
144
144
concurrency : # We support one build or nightly test to run at a time currently.
145
145
group : cluster-private-${{needs.set-variables.outputs.run-id}}
146
146
cancel-in-progress : true
@@ -156,7 +156,7 @@ jobs:
156
156
concurrency : # We support one build or nightly test to run at a time currently.
157
157
group : cluster-create-${{needs.set-variables.outputs.run-id}}
158
158
cancel-in-progress : true
159
- uses : ./.github/workflows/cluster_create .yaml
159
+ uses : ./.github/workflows/reusable_cluster_create .yaml
160
160
with :
161
161
cluster-name : ' ${{needs.set-variables.outputs.cluster-name}}'
162
162
tpu-type : ' ${{needs.set-variables.outputs.tpu-type || inputs.tpu-type}}'
@@ -166,7 +166,7 @@ jobs:
166
166
secrets : inherit
167
167
workloads-tests :
168
168
needs : [cluster-create, set-variables]
169
- uses : ./.github/workflows/workload_test .yaml
169
+ uses : ./.github/workflows/reusable_workload_tests .yaml
170
170
concurrency : # We support one build or nightly test to run at a time currently.
171
171
group : workload-tests-${{needs.set-variables.outputs.run-id}}
172
172
cancel-in-progress : true
@@ -178,7 +178,7 @@ jobs:
178
178
secrets : inherit
179
179
batch-tests :
180
180
needs : [cluster-create, set-variables]
181
- uses : ./.github/workflows/batch_test .yaml
181
+ uses : ./.github/workflows/reusable_batch_tests .yaml
182
182
concurrency : # We support one build or nightly test to run at a time currently.
183
183
group : batch-tests-${{needs.set-variables.outputs.run-id}}
184
184
cancel-in-progress : true
@@ -189,7 +189,7 @@ jobs:
189
189
secrets : inherit
190
190
filestore-tests :
191
191
needs : [cluster-create, set-variables, batch-tests, workloads-tests]
192
- uses : ./.github/workflows/filestore_tests .yaml
192
+ uses : ./.github/workflows/reusable_filestore_tests .yaml
193
193
concurrency : # We support one build or nightly test to run at a time currently.
194
194
group : filestore-tests-${{needs.set-variables.outputs.run-id}}
195
195
cancel-in-progress : true
@@ -202,7 +202,7 @@ jobs:
202
202
secrets : inherit
203
203
fuse-tests :
204
204
needs : [filestore-tests, set-variables]
205
- uses : ./.github/workflows/fuse_tests .yaml
205
+ uses : ./.github/workflows/reusable_fuse_tests .yaml
206
206
concurrency : # We support one build or nightly test to run at a time currently.
207
207
group : fuse-tests-${{needs.set-variables.outputs.run-id}}
208
208
cancel-in-progress : true
@@ -216,7 +216,7 @@ jobs:
216
216
cluster-delete :
217
217
if : always()
218
218
needs : [set-variables, fuse-tests]
219
- uses : ./.github/workflows/cluster_delete .yaml
219
+ uses : ./.github/workflows/reusable_cluster_delete .yaml
220
220
with :
221
221
cluster-name : ${{needs.set-variables.outputs.cluster-name}}
222
222
run-id : ${{needs.set-variables.outputs.run-id}}
0 commit comments