Skip to content

Commit

Permalink
pythongh-91960: FreeBSD Cirrus CI runs configure separately
Browse files Browse the repository at this point in the history
Run configure and make in separated steps to have more readable logs.
  • Loading branch information
vstinner committed Sep 8, 2023
1 parent 00cf626 commit 9213522
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,16 @@ freebsd_task:
sysctl_script:
- sysctl net.inet.tcp.blackhole=0
- sysctl net.inet.udp.blackhole=0
build_script:
configure_script:
- mkdir build
- cd build
- ../configure --with-pydebug
build_script:
- cd build
- make -j$(sysctl -n hw.ncpu)
pythoninfo_script:
- cd build && make pythoninfo
- cd build
- make pythoninfo
test_script:
- cd build
# dtrace fails to build on FreeBSD - see gh-73263
Expand Down

0 comments on commit 9213522

Please sign in to comment.