Skip to content

Commit a4fd587

Browse files
committed
skip fastdebug build and test on Windows - it's too slow
1 parent 264fd8b commit a4fd587

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.ci/ci.jsonnet

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff 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) = [

0 commit comments

Comments
 (0)