Skip to content

Commit 7169f22

Browse files
committed
pythongh-91960: Cirrus CI runs configure in a separate step
Run configure and make in separated steps to have more readable logs.
1 parent 00cf626 commit 7169f22

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.cirrus.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,16 @@ freebsd_task:
1010
sysctl_script:
1111
- sysctl net.inet.tcp.blackhole=0
1212
- sysctl net.inet.udp.blackhole=0
13-
build_script:
13+
configure_script:
1414
- mkdir build
1515
- cd build
1616
- ../configure --with-pydebug
17+
build_script:
18+
- cd build
1719
- make -j$(sysctl -n hw.ncpu)
1820
pythoninfo_script:
19-
- cd build && make pythoninfo
21+
- cd build
22+
- make pythoninfo
2023
test_script:
2124
- cd build
2225
# dtrace fails to build on FreeBSD - see gh-73263

0 commit comments

Comments
 (0)