Skip to content

Commit 5510d9c

Browse files
authored
Make t0 part1 and part2 be able to be rerun if failed (#12221)
Why I did it With continueOnError: true, a failed job returns the result: partiallySuccess, which cause it can't be rerun, since AZP consider it as passed. Then we can't only rerun t0 jobs when it fails. How I did it Mark t0 part1 and part2 as continueOnError: false. How to verify it The pipeline will verify it.
1 parent 1798823 commit 5510d9c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

azure-pipelines.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,7 @@ stages:
137137
pool: sonictest
138138
displayName: "kvmtest-t0-part1"
139139
timeoutInMinutes: 360
140-
continueOnError: true
140+
continueOnError: false
141141
steps:
142142
- template: .azure-pipelines/run-test-template.yml
143143
parameters:
@@ -151,7 +151,7 @@ stages:
151151
pool: sonictest
152152
displayName: "kvmtest-t0-part2"
153153
timeoutInMinutes: 360
154-
continueOnError: true
154+
continueOnError: false
155155
steps:
156156
- template: .azure-pipelines/run-test-template.yml
157157
parameters:

0 commit comments

Comments
 (0)