@@ -122,24 +122,24 @@ jobs:
122
122
with :
123
123
run-id : ' ${{needs.set-variables.outputs.run-id}}'
124
124
run-unit-tests :
125
+ needs : [install-dependencies, set-variables]
125
126
uses : ./.github/workflows/unit_tests.yaml
126
127
with :
127
128
run-id : ${{needs.set-variables.outputs.run-id}}
128
129
concurrency : # We support one build or nightly test to run at a time currently.
129
130
group : unit-tests-${{needs.set-variables.outputs.run-id}}
130
131
cancel-in-progress : true
131
- needs : [linter, set-variables]
132
132
run-integration-tests :
133
+ needs : [install-dependencies, set-variables]
133
134
uses : ./.github/workflows/integration_tests.yaml
134
135
with :
135
136
run-id : ' ${{needs.set-variables.outputs.run-id}}'
136
137
concurrency : # We support one build or nightly test to run at a time currently.
137
138
group : integration-tests-${{needs.set-variables.outputs.run-id}}
138
139
cancel-in-progress : true
139
140
secrets : inherit
140
- needs : [run-unit-tests, set-variables]
141
141
cluster-private :
142
- needs : [run-integration-tests, set-variables]
142
+ needs : [linter, run-unit-tests, run-integration-tests, set-variables]
143
143
uses : ./.github/workflows/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}}
@@ -152,7 +152,7 @@ jobs:
152
152
location : ' ${{needs.set-variables.outputs.location}}'
153
153
secrets : inherit
154
154
cluster-create :
155
- needs : [run-integration-tests, set-variables]
155
+ needs : [linter, run-unit-tests, run-integration-tests, set-variables]
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
0 commit comments