File tree Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Expand file tree Collapse file tree 1 file changed +5
-4
lines changed Original file line number Diff line number Diff line change @@ -337,7 +337,7 @@ def build() {
337
337
}
338
338
339
339
def get_compile_command () {
340
- return " make ${ EXTRA_MAKE_OPTIONS} all"
340
+ return " make ${ EXTRA_MAKE_OPTIONS} all"
341
341
}
342
342
343
343
def archive_sdk () {
@@ -844,9 +844,10 @@ def build_all() {
844
844
node(" ${ NODE} " ) {
845
845
timeout(time : 5 , unit : ' HOURS' ) {
846
846
if (" ${ DOCKER_IMAGE} " ) {
847
- // TODO: remove this workaround when https://github.com/adoptium/infrastructure/issues/3597 resolved. related: infra 9292
848
- if ((PLATFORM ==~ / ppc64le_linux.*/ ) ||
849
- ((PLATFORM ==~ / x86-64_linux.*/ ) && ((SDK_VERSION . toLowerCase() == ' next' ) || (SDK_VERSION . toInteger() >= 17 )))) {
847
+ // TODO: Remove this workaround when https://github.com/adoptium/infrastructure/issues/3597 is resolved. Related: infra 9292.
848
+ if ((PLATFORM ==~ / ppc64le_linux.*/ )
849
+ || ((PLATFORM ==~ / x86-64_linux.*/ ) && (! SDK_VERSION . isInteger() || (SDK_VERSION . toInteger() >= 17 )))
850
+ ) {
850
851
create_docker_image_locally()
851
852
}
852
853
prepare_docker_environment()
You can’t perform that action at this time.
0 commit comments