Skip to content

Commit f3b4c2f

Browse files
authored
[repo] Always execute build-test step (open-telemetry#2054)
1 parent 238d111 commit f3b4c2f

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ci.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -590,6 +590,7 @@ jobs:
590590
lint-misspell-sanitycheck,
591591
detect-changes,
592592
lint-md,
593+
lint-yml,
593594
lint-dotnet-format,
594595
build-test-exporter-geneva,
595596
build-test-exporter-influxdb,
@@ -633,7 +634,8 @@ jobs:
633634
build-test-contrib-shared-tests,
634635
verify-aot-compat
635636
]
636-
if: always() && !cancelled() && !contains(needs.*.result, 'failure')
637-
runs-on: windows-latest
637+
if: always() && !cancelled()
638+
runs-on: ubuntu-latest
638639
steps:
639-
- run: echo 'build complete ✓'
640+
- run: |
641+
if ( ${{ contains(needs.*.result, 'failure') }} == true ); then echo 'build failed ✗'; exit 1; else echo 'build complete ✓'; fi

0 commit comments

Comments
 (0)