Skip openj9 in PR build (#7641)
to help offset new parallelization in #7639
This commit is contained in:
parent
2027c7bf97
commit
82ea80aba7
|
@ -9,6 +9,9 @@ on:
|
||||||
no-build-cache:
|
no-build-cache:
|
||||||
type: boolean
|
type: boolean
|
||||||
required: false
|
required: false
|
||||||
|
skip-openj9-tests:
|
||||||
|
type: boolean
|
||||||
|
required: false
|
||||||
skip-windows-smoke-tests:
|
skip-windows-smoke-tests:
|
||||||
type: boolean
|
type: boolean
|
||||||
required: false
|
required: false
|
||||||
|
@ -144,6 +147,7 @@ jobs:
|
||||||
- hotspot
|
- hotspot
|
||||||
- openj9
|
- openj9
|
||||||
exclude:
|
exclude:
|
||||||
|
- vm: ${{ inputs.skip-openj9-tests && 'openj9' || '' }}
|
||||||
- test-java-version: 19
|
- test-java-version: 19
|
||||||
vm: openj9
|
vm: openj9
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
|
|
|
@ -11,8 +11,9 @@ jobs:
|
||||||
common:
|
common:
|
||||||
uses: ./.github/workflows/build-common.yml
|
uses: ./.github/workflows/build-common.yml
|
||||||
with:
|
with:
|
||||||
# windows smoke tests are slower, and it's rare for only the windows smoke tests to break
|
# it's rare for only the openj9 tests or the windows smoke tests to break
|
||||||
skip-windows-smoke-tests: false
|
skip-openj9-tests: true
|
||||||
|
skip-windows-smoke-tests: true
|
||||||
cache-read-only: true
|
cache-read-only: true
|
||||||
|
|
||||||
test-latest-deps:
|
test-latest-deps:
|
||||||
|
|
Loading…
Reference in New Issue