Skip to content

Commit

Permalink
[repo] Always execute build-test step (#2054)
Browse files Browse the repository at this point in the history
  • Loading branch information
Kielek committed Sep 12, 2024
1 parent 238d111 commit f3b4c2f
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,7 @@ jobs:
lint-misspell-sanitycheck,
detect-changes,
lint-md,
lint-yml,
lint-dotnet-format,
build-test-exporter-geneva,
build-test-exporter-influxdb,
Expand Down Expand Up @@ -633,7 +634,8 @@ jobs:
build-test-contrib-shared-tests,
verify-aot-compat
]
if: always() && !cancelled() && !contains(needs.*.result, 'failure')
runs-on: windows-latest
if: always() && !cancelled()
runs-on: ubuntu-latest
steps:
- run: echo 'build complete ✓'
- run: |
if ( ${{ contains(needs.*.result, 'failure') }} == true ); then echo 'build failed ✗'; exit 1; else echo 'build complete ✓'; fi

0 comments on commit f3b4c2f

Please sign in to comment.