diff options
author | Victor Stinner <vstinner@python.org> | 2023-09-08 20:06:34 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-09-08 20:06:34 (GMT) |
commit | 15d659f929bb2a79fa7211947ef4f2c43818fd31 (patch) | |
tree | 34535db2afed8c2aa83d14ba5a81fb6b0e60e64a | |
parent | 5bda2f637e1cfbca45a83aa6e22db25498064b27 (diff) | |
download | cpython-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.yml | 7 |
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 |