File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -375,6 +375,8 @@ local common = import 'common.libsonnet';
375375 targets: ['gate' ],
376376 deploysArtifacts: true ,
377377
378+ local skip_fastdebug = conf.name == '-windows-cygwin-amd64' ,
379+
378380 local build_labsjdk(jdk_debug_level, java_home_env_var) = [
379381 ['set-export' , java_home_env_var, conf.path('${PWD}/../%s-java-home' % jdk_debug_level)],
380382 ['python3' , '-u' , conf.path('${LABSJDK_BUILDER_DIR}/build_labsjdk.py' ),
@@ -403,7 +405,7 @@ local common = import 'common.libsonnet';
403405 ['set-export' , 'JIB_DATA_DIR' , conf.path('${PWD}/../jib' )],
404406 ] +
405407 build_labsjdk('release' , 'JAVA_HOME' ) +
406- build_labsjdk('fastdebug' , 'JAVA_HOME_FASTDEBUG' ),
408+ ( if skip_fastdebug then [] else build_labsjdk('fastdebug' , 'JAVA_HOME_FASTDEBUG' ) ),
407409 },
408410
409411 local build_confs(defs) = [
You can’t perform that action at this time.
0 commit comments