We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd74056 commit 2d6b03fCopy full SHA for 2d6b03f
.github/workflows/ci.yml
@@ -171,8 +171,8 @@ jobs:
171
172
build-test:
173
needs: [
174
- lint-misspell-sanitycheck,
175
detect-changes,
+ lint-misspell-sanitycheck,
176
lint-md,
177
lint-dotnet-format,
178
build-test-solution,
@@ -186,7 +186,8 @@ jobs:
186
verify-aot-compat,
187
concurrency-tests
188
]
189
- if: always() && !cancelled() && !contains(needs.*.result, 'failure')
190
- runs-on: windows-latest
+ if: always() && !cancelled()
+ runs-on: ubuntu-latest
191
steps:
192
- - run: echo 'build complete'
+ - run: |
193
+ if ( ${{ contains(needs.*.result, 'failure') }} == true ); then echo 'build failed'; exit 1; else echo 'build complete'; fi
0 commit comments