Skip to content

Commit 15d659f

Browse files
authored
gh-91960: FreeBSD Cirrus CI runs configure separately (#109127)
Run configure and make in separated steps to have more readable logs.
1 parent 5bda2f6 commit 15d659f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.cirrus.yml

+5-2
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)