Skip to content

Commit

Permalink
Fix for GraalVM issue
Browse files Browse the repository at this point in the history
  • Loading branch information
radtriste committed Dec 19, 2022
1 parent ab97a6f commit d139f5e
Showing 1 changed file with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ class Environment {
getDefaultEnvVarsClosure: { script ->
[
NATIVE: 'true',
NATIVE_BUILDER_IMAGE: 'quay.io/quarkus/ubi-quarkus-mandrel:22.3-java17',
ADDITIONAL_TIMEOUT: 720,
BUILD_MVN_OPTS: '-Dproductized -Ddata-index-ephemeral.image=quay.io/kiegroup/kogito-data-index-ephemeral',
DISABLE_PERSISTENCE: 'true',
Expand All @@ -88,7 +89,7 @@ class Environment {
getDefaultEnvVarsClosure: { script ->
[
NATIVE: 'true',
NATIVE_BUILDER_IMAGE: Utils.getEnvironmentMandrelBuilderImage(script),
NATIVE_BUILDER_IMAGE: 'quay.io/quarkus/ubi-quarkus-mandrel:22.3-java17',
ADDITIONAL_TIMEOUT: 720,
BUILD_MVN_OPTS: '-Dproductized -Ddata-index-ephemeral.image=quay.io/kiegroup/kogito-data-index-ephemeral',
DISABLE_EVENTS: 'true',
Expand All @@ -104,7 +105,7 @@ class Environment {
getDefaultEnvVarsClosure: { script ->
[
NATIVE: 'true',
NATIVE_BUILDER_IMAGE: Utils.getEnvironmentMandrelLTSBuilderImage(script),
NATIVE_BUILDER_IMAGE: 'quay.io/quarkus/ubi-quarkus-mandrel:22.3-java17',
ADDITIONAL_TIMEOUT: 720,
QUARKUS_BRANCH: Utils.getEnvironmentMandrelLTSQuarkusVersion(script),
BUILD_MVN_OPTS: '-Dproductized -Ddata-index-ephemeral.image=quay.io/kiegroup/kogito-data-index-ephemeral',
Expand All @@ -121,7 +122,7 @@ class Environment {
getDefaultEnvVarsClosure: { script ->
[
QUARKUS_BRANCH: 'main',
BUILD_MVN_OPTS: '-Dproductized -Ddata-index-ephemeral.image=quay.io/kiegroup/kogito-data-index-ephemeral',
BUILD_MVN_OPTS: '-Dproductized -Ddata-index-ephemeral.image=quay.io/kiegroup/kogito-data-index-ephemeral ',
DISABLE_PERSISTENCE: 'true',
]
}
Expand Down

0 comments on commit d139f5e

Please sign in to comment.