|
73 | 73 | test_without_building: ${{ steps.restore-build.outputs.cache-hit }}
|
74 | 74 | other_flags: ${{ inputs.other_flags }}
|
75 | 75 | - name: Retry iOS Test Suite if needed
|
76 |
| - if: inputs.retry_on_error == 'true' && steps.run-tests.outcome=='failure' |
| 76 | + if: inputs.retry_on_error == true && steps.run-tests.outcome=='failure' |
77 | 77 | id: retry-tests
|
78 | 78 | uses: ./.github/composite_actions/run_xcodebuild_test
|
79 | 79 | with:
|
@@ -141,7 +141,7 @@ jobs:
|
141 | 141 | test_without_building: ${{ steps.restore-build.outputs.cache-hit }}
|
142 | 142 | other_flags: ${{ inputs.other_flags }}
|
143 | 143 | - name: Retry macOS Test Suite if needed
|
144 |
| - if: inputs.retry_on_error == 'true' && steps.run-tests.outcome=='failure' |
| 144 | + if: inputs.retry_on_error == true && steps.run-tests.outcome=='failure' |
145 | 145 | id: retry-tests
|
146 | 146 | uses: ./.github/composite_actions/run_xcodebuild_test
|
147 | 147 | with:
|
@@ -200,7 +200,7 @@ jobs:
|
200 | 200 | test_without_building: ${{ steps.restore-build.outputs.cache-hit }}
|
201 | 201 | other_flags: ${{ inputs.other_flags }}
|
202 | 202 | - name: Retry tvOS Test Suite if needed
|
203 |
| - if: inputs.retry_on_error == 'true' && steps.run-tests.outcome=='failure' |
| 203 | + if: inputs.retry_on_error == true && steps.run-tests.outcome=='failure' |
204 | 204 | id: retry-tests
|
205 | 205 | uses: ./.github/composite_actions/run_xcodebuild_test
|
206 | 206 | with:
|
@@ -259,7 +259,7 @@ jobs:
|
259 | 259 | test_without_building: ${{ steps.restore-build.outputs.cache-hit }}
|
260 | 260 | other_flags: ${{ inputs.other_flags }}
|
261 | 261 | - name: Retry watchOS Test Suite if needed
|
262 |
| - if: inputs.retry_on_error == 'true' && steps.run-tests.outcome=='failure' |
| 262 | + if: inputs.retry_on_error == true && steps.run-tests.outcome=='failure' |
263 | 263 | id: retry-tests
|
264 | 264 | uses: ./.github/composite_actions/run_xcodebuild_test
|
265 | 265 | with:
|
|
0 commit comments