summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVictor Stinner <vstinner@python.org>2023-09-08 20:06:34 (GMT)
committerGitHub <noreply@github.com>2023-09-08 20:06:34 (GMT)
commit15d659f929bb2a79fa7211947ef4f2c43818fd31 (patch)
tree34535db2afed8c2aa83d14ba5a81fb6b0e60e64a
parent5bda2f637e1cfbca45a83aa6e22db25498064b27 (diff)
downloadcpython-15d659f929bb2a79fa7211947ef4f2c43818fd31.zip
cpython-15d659f929bb2a79fa7211947ef4f2c43818fd31.tar.gz
cpython-15d659f929bb2a79fa7211947ef4f2c43818fd31.tar.bz2
gh-91960: FreeBSD Cirrus CI runs configure separately (#109127)
Run configure and make in separated steps to have more readable logs.
-rw-r--r--.cirrus.yml7
1 files changed, 5 insertions, 2 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 823b1f9..ca41c2e 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -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