Fix workflow_dispatch (#5113)
This commit is contained in:
parent
6ac09a3bfb
commit
22c2691773
|
@ -149,7 +149,7 @@ jobs:
|
||||||
GE_CACHE_PASSWORD: ${{ secrets.GE_CACHE_PASSWORD }}
|
GE_CACHE_PASSWORD: ${{ secrets.GE_CACHE_PASSWORD }}
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
with:
|
with:
|
||||||
arguments: :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}
|
arguments: ":smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}"
|
||||||
|
|
||||||
setup-muzzle-matrix:
|
setup-muzzle-matrix:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -171,7 +171,7 @@ jobs:
|
||||||
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
|
GRADLE_ENTERPRISE_ACCESS_KEY: ${{ secrets.GRADLE_ENTERPRISE_ACCESS_KEY }}
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
with:
|
with:
|
||||||
arguments: :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }} --no-build-cache
|
arguments: ":smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }} --no-build-cache"
|
||||||
|
|
||||||
# muzzle is intentionally not included in the nightly-no-cache build because
|
# muzzle is intentionally not included in the nightly-no-cache build because
|
||||||
# it doesn't use gradle cache anyways and so is already covered by the normal nightly build
|
# it doesn't use gradle cache anyways and so is already covered by the normal nightly build
|
||||||
|
|
|
@ -149,7 +149,7 @@ jobs:
|
||||||
GE_CACHE_PASSWORD: ${{ secrets.GE_CACHE_PASSWORD }}
|
GE_CACHE_PASSWORD: ${{ secrets.GE_CACHE_PASSWORD }}
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
with:
|
with:
|
||||||
arguments: :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}
|
arguments: ":smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}"
|
||||||
|
|
||||||
setup-muzzle-matrix:
|
setup-muzzle-matrix:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -87,7 +87,7 @@ jobs:
|
||||||
- name: Test
|
- name: Test
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
with:
|
with:
|
||||||
arguments: :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}
|
arguments: ":smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}"
|
||||||
|
|
||||||
# muzzle is intentionally not included in the release workflows
|
# muzzle is intentionally not included in the release workflows
|
||||||
# because any time a new library version is released to maven central it can fail,
|
# because any time a new library version is released to maven central it can fail,
|
||||||
|
|
|
@ -167,7 +167,7 @@ jobs:
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
with:
|
with:
|
||||||
cache-read-only: true
|
cache-read-only: true
|
||||||
arguments: :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}
|
arguments: ":smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}"
|
||||||
|
|
||||||
setup-muzzle-matrix:
|
setup-muzzle-matrix:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
|
@ -87,7 +87,7 @@ jobs:
|
||||||
- name: Test
|
- name: Test
|
||||||
uses: gradle/gradle-build-action@v2
|
uses: gradle/gradle-build-action@v2
|
||||||
with:
|
with:
|
||||||
arguments: :smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}
|
arguments: ":smoke-tests:test -PsmokeTestSuite=${{ matrix.smoke-test-suite }}"
|
||||||
|
|
||||||
# muzzle is intentionally not included in the release workflows
|
# muzzle is intentionally not included in the release workflows
|
||||||
# because any time a new library version is released to maven central it can fail,
|
# because any time a new library version is released to maven central it can fail,
|
||||||
|
|
Loading…
Reference in New Issue