Disable smoke tests in release build since we can't run them inline with other builds effectively. (#2990)

This commit is contained in:
Anuraag Agrawal 2021-05-14 16:04:03 +09:00 committed by GitHub
parent 3118bf2e49
commit 81f9d1853f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ jobs:
with: with:
job-id: jdk11 job-id: jdk11
remote-build-cache-proxy-enabled: false remote-build-cache-proxy-enabled: false
arguments: build final closeAndReleaseRepository --stacktrace -Prelease.version=${{ github.event.inputs.version }} arguments: build final closeAndReleaseRepository --stacktrace -x :smoke-tests:test -Prelease.version=${{ github.event.inputs.version }}
env: env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }} BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }} BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}

View File

@ -22,7 +22,7 @@ jobs:
with: with:
job-id: jdk11 job-id: jdk11
remote-build-cache-proxy-enabled: false remote-build-cache-proxy-enabled: false
arguments: build final closeAndReleaseSonatypeStagingRepository --stacktrace -Prelease.version=${{ github.event.inputs.version }} arguments: build final closeAndReleaseSonatypeStagingRepository --stacktrace -x :smoke-tests:test -Prelease.version=${{ github.event.inputs.version }}
env: env:
BINTRAY_USER: ${{ secrets.BINTRAY_USER }} BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }} BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}