Don't block snapshot publishing on testLatestDeps (#4684)

This commit is contained in:
Trask Stalnaker 2021-11-21 14:49:57 -08:00 committed by GitHub
parent 2ddd01f304
commit a9928b53fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -298,7 +298,11 @@ jobs:
snapshot:
runs-on: ubuntu-latest
needs: [ build, test, testLatestDeps, smoke-test, examples, muzzle ]
# intentionally not blocking snapshot publishing on testLatestDeps
# because any time a new library version is released to maven central
# it can fail due to test code incompatibility with the new library version,
# or due to slight changes in emitted telemetry
needs: [ build, test, smoke-test, examples, muzzle ]
if: github.repository == 'open-telemetry/opentelemetry-java-instrumentation'
steps:
- uses: actions/checkout@v2.3.4