Skip to content

Commit

Permalink
Fix guards in sdk and truffle.
Browse files Browse the repository at this point in the history
  • Loading branch information
jchalou committed May 23, 2024
1 parent 51b93ba commit fb159c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions sdk/ci/ci.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
],
targets: ["gate"],
timelimit: "30:00",
guard: {
includes: ["<graal>/sdk/**", "**.jsonnet"] + utils.top_level_ci,
guard+: {
includes+: ["<graal>/sdk/**", "**.jsonnet"] + utils.top_level_ci,
}
},

Expand Down
4 changes: 2 additions & 2 deletions truffle/ci/ci.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
},

local guard = {
guard: {
includes: ["<graal>/sdk/**", "<graal>/truffle/**", "**.jsonnet"] + top_level_ci,
guard+: {
includes+: ["<graal>/sdk/**", "<graal>/truffle/**", "**.jsonnet"] + top_level_ci,
}
},

Expand Down

0 comments on commit fb159c2

Please sign in to comment.