Skip to content

Commit 46ce27e

Browse files
committed
[GR-45066][GR-45687] Update our CI jobs
PullRequest: graalpython/2744
2 parents 10e90d3 + aa4c41d commit 46ce27e

File tree

3 files changed

+15
-2
lines changed

3 files changed

+15
-2
lines changed

ci.jsonnet

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{ "overlay": "8420cf6f76e0b00296fe95aab7cbdeedb17a9994" }
1+
{ "overlay": "7e476a93c9ccf7199f0af533fb86ff535cdbea02" }

graalpython/lib-graalpython/patches/asv/sdist/asv-0.5.1.patch

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,16 @@ index 6411894..05f0678 100644
1111
else:
1212
# Transient effects exist also on CPython, e.g. from
1313
# OS scheduling
14+
diff --git a/asv/util.py b/asv/util.py
15+
index 52eb96e..98daf61 100644
16+
--- a/asv/util.py
17+
+++ b/asv/util.py
18+
@@ -544,7 +544,7 @@ def check_output(args, valid_return_codes=(0,), timeout=600, dots=True,
19+
else:
20+
kwargs['close_fds'] = True
21+
- posix = getattr(os, 'setpgid', None)
22+
+ posix = getattr(os, 'setpgid', None) and sys.implementation.name != "graalpy"
23+
if posix:
24+
# Run the subprocess in a separate process group, so that we
25+
# can kill it and all child processes it spawns e.g. on
26+
# timeouts. Note that subprocess.Popen will wait until exec()

mx.graalpython/mx_graalpython_python_benchmarks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ def _vmRun(self, vm, workdir, command, benchmarks, bmSuiteArgs):
650650

651651

652652
class NumPySuite(PySuite):
653-
VERSION = "v1.16.4"
653+
VERSION = "v1.23.5"
654654

655655
PREREQUISITES = """
656656
setuptools==63.1.0

0 commit comments

Comments
 (0)