Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/base-windows-wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ on:
type: string
description: 'The tag to use for build stats uploads of native tests (e.g. 22.3.0-dev-jdk17-prepatch-x)'
default: "null"
quarkus-additional-build-args:
type: string
description: 'Additional arguments to append to the quarkus native build command'
default: ''

jobs:
process-inputs:
Expand Down Expand Up @@ -89,5 +93,6 @@ jobs:
jdk: ${{ github.event.inputs.jdk }}
# builder-image: ${{ github.event.inputs.builder-image }}
build-stats-tag: ${{ github.event.inputs.build-stats-tag }}
quarkus-additional-build-args-append: ${{ github.event.inputs.quarkus-additional-build-args }}
secrets:
UPLOAD_COLLECTOR_TOKEN: ${{ secrets.UPLOAD_COLLECTOR_TOKEN }}
5 changes: 5 additions & 0 deletions .github/workflows/base-windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,10 @@ on:
type: string
description: 'The tag to use for build stats upload of native tests (e.g. 22.3.0-dev-jdk17-mytest-patch-before)'
default: "null"
quarkus-additional-build-args-append:
type: string
description: 'Additional arguments to append to the quarkus native build command'
default: ''
secrets:
ISSUE_BOT_TOKEN:
description: 'A token used to report results in GH issues'
Expand All @@ -72,6 +76,7 @@ env:
DB_NAME: hibernate_orm_test
COMMON_MAVEN_ARGS: "-e -B --settings .github/mvn-settings.xml --fail-at-end"
NATIVE_TEST_MAVEN_OPTS: "-Dtest-containers -Dstart-containers -DfailIfNoTests=false -Dquarkus.native.native-image-xmx=13g -Dnative -Dnative.surefire.skip -Dformat.skip -Dno-descriptor-tests -DskipDocs"
QUARKUS_NATIVE_ADDITIONAL_BUILD_ARGS_APPEND: ${{ inputs.quarkus-additional-build-args-append }}
MX_GIT_CACHE: refcache
JAVA_HOME: ${{ github.workspace }}\openjdk
GRAALVM_HOME: ${{ github.workspace }}\graalvm-home
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/base-wrapper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ on:
- "ubuntu-latest"
- "ubuntu-24.04"
- "ubuntu-24.04-arm"
quarkus-additional-build-args:
type: string
description: 'Additional arguments to append to the quarkus native build command'
default: ''

jobs:
process-inputs:
Expand Down Expand Up @@ -101,5 +105,6 @@ jobs:
builder-image: ${{ github.event.inputs.builder-image }}
build-stats-tag: ${{ github.event.inputs.build-stats-tag }}
gh-runner: ${{ github.event.inputs.gh-runner }}
quarkus-additional-build-args-append: ${{ github.event.inputs.quarkus-additional-build-args }}
secrets:
UPLOAD_COLLECTOR_TOKEN: ${{ secrets.UPLOAD_COLLECTOR_TOKEN }}
5 changes: 5 additions & 0 deletions .github/workflows/base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ on:
type: string
description: 'The github runner we are building on'
default: 'ubuntu-latest'
quarkus-additional-build-args-append:
type: string
description: 'Additional arguments to append to the quarkus native build command'
default: ''
secrets:
ISSUE_BOT_TOKEN:
description: 'A token used to report results in GH issues'
Expand All @@ -75,6 +79,7 @@ env:
DB_PASSWORD: hibernate_orm_test
DB_NAME: hibernate_orm_test
NATIVE_TEST_MAVEN_OPTS: "--fail-at-end -Dtest-containers -Dstart-containers -DfailIfNoTests=false -Dquarkus.native.native-image-xmx=13g -Dnative -Dnative.surefire.skip -Dformat.skip -Dno-descriptor-tests install -DskipDocs"
QUARKUS_NATIVE_ADDITIONAL_BUILD_ARGS_APPEND: ${{ inputs.quarkus-additional-build-args-append }}
MX_GIT_CACHE: refcache
JAVA_HOME: ${{ github.workspace }}/openjdk
GRAALVM_HOME: ${{ github.workspace }}/graalvm-home
Expand Down