Skip to content

Commit 267e00e

Browse files
committed
Update imports
1 parent 1774d62 commit 267e00e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

ci/graal/ci/ci_common/common-utils.libsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
# Adds a CI build predicate to `build` if it is a gate such that it is only
2626
# run if a top level CI file or a non-documentation file in any of `suites` has been updated
2727
add_gate_predicate(build, suites, extra_includes=[], extra_excludes=[])::
28-
if std.member(build.targets, "gate") then
28+
if std.member(build.targets, "gate") || std.member(build.targets, "tier1") || std.member(build.targets, "tier2") || std.member(build.targets, "tier3") then
2929
build + {
3030
guard+: {
3131
includes+: [ suite + "/**" for suite in suites ] + extra_includes + $.top_level_ci,

mx.graalpython/suite.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,15 +53,15 @@
5353
},
5454
{
5555
"name": "tools",
56-
"version": "9a903d94ba276f65333c7e15b38983d96d17a54c",
56+
"version": "3b244277d76c8f88a8a3a6bd8e85ba3d23638e92",
5757
"subdir": True,
5858
"urls": [
5959
{"url": "https://github.com/oracle/graal", "kind": "git"},
6060
],
6161
},
6262
{
6363
"name": "regex",
64-
"version": "9a903d94ba276f65333c7e15b38983d96d17a54c",
64+
"version": "3b244277d76c8f88a8a3a6bd8e85ba3d23638e92",
6565
"subdir": True,
6666
"urls": [
6767
{"url": "https://github.com/oracle/graal", "kind": "git"},

0 commit comments

Comments
 (0)