Skip to content

Commit 2f90d9c

Browse files
bors[bot]vext01
andauthored
Merge #1
1: Initial CI support. r=ltratt a=vext01 This is preliminary CI support for CPython. A test is failing: ``` test test_signal failed -- Traceback (most recent call last): File "/ci/Lib/test/test_signal.py", line 184, in test_main self.fail(tb) AssertionError: Traceback (most recent call last): File "/ci/Lib/test/test_signal.py", line 167, in test_main self.run_test() File "/ci/Lib/test/test_signal.py", line 94, in run_test child = ignoring_eintr(subprocess.Popen, ['kill', '-HUP', str(pid)]) File "/ci/Lib/test/test_signal.py", line 32, in ignoring_eintr return __func(*args, **kwargs) File "/ci/Lib/subprocess.py", line 394, in __init__ errread, errwrite) File "/ci/Lib/subprocess.py", line 1047, in _execute_child raise child_exception OSError: [Errno 2] No such file or directory ``` Does anyone know anything about it? Could have cloned at a bad time? Co-authored-by: Edd Barrett <[email protected]>
2 parents 8d21aa2 + 1bbda37 commit 2f90d9c

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.buildbot.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/sh
2+
3+
set -e
4+
5+
./configure --enable-optimizations
6+
make -j `nproc`
7+
./python -m test

bors.toml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# The service providing the commit statuses to GitHub.
2+
status = [
3+
"buildbot/buildbot-build-script"
4+
]
5+
6+
# Allow 30 minutes for builds.
7+
timeout_sec = 1350
8+
9+
# Have bors delete auto-merged branches (if possible).
10+
delete_merged_branches = true

0 commit comments

Comments
 (0)