Skip to content

Commit 1951e60

Browse files
Automatic merge of master into galahad
2 parents 9fa0c2a + 8898c9e commit 1951e60

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

espresso/ci/ci_common/common.jsonnet

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,16 +59,18 @@ local benchmark_suites = ['dacapo', 'renaissance', 'scala-dacapo'];
5959
assert !with_native_image || with_compiler,
6060
guard+: {
6161
includes: [
62-
"<graal>/.git/**",
62+
"<graal>/.git/**", # This ensure the .git directory is preserved in apply-predicates
6363
"<graal>/sdk/**",
6464
"<graal>/truffle/**",
6565
"<graal>/espresso/**",
6666
"<graal>/tools/**",
6767
"<graal>/regex/**",
6868
"<graal>/sulong/**",
6969
"<graal>/pyproject.toml",
70-
] + base.basic_guard_includes + (if with_compiler then [
7170
"<graal>/common.json",
71+
"<graal>/ci.jsonnet",
72+
"<graal>/ci/**",
73+
] + base.basic_guard_includes + (if with_compiler then [
7274
"<graal>/compiler/**",
7375
] + base.compiler_guard_includes else []) + (if with_native_image then [
7476
"<graal>/substratevm/**",

sulong/ci/ci.jsonnet

+4-2
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,17 @@ local sc = (import "ci_common/sulong-common.jsonnet");
2727
guard+: {
2828
includes+: [
2929
# sulong and its dependencies
30-
"<graal>/.git/**",
30+
"<graal>/.git/**", # This ensure the .git directory is preserved in apply-predicates
31+
"<graal>/ci.jsonnet",
32+
"<graal>/ci/**",
33+
"<graal>/common.json",
3134
"<graal>/sdk/**",
3235
"<graal>/truffle/**",
3336
"<graal>/sulong/**",
3437
# the compiler and its dependencies
3538
"<graal>/compiler/**",
3639
"<graal>/regex/**",
3740
"<graal>/java-benchmarks/**",
38-
"<graal>/common.json",
3941
] + (if standalone then [
4042
# substratevm and its dependencies
4143
"<graal>/substratevm/**",

0 commit comments

Comments
 (0)