Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update .cirrus.yml
  • Loading branch information
vstinner authored Sep 6, 2023
commit 7fd0af78aae6f41f0fb2820a6a71ad11d62864d2
2 changes: 1 addition & 1 deletion .cirrus.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ freebsd_task:
build_script:
- mkdir build
- cd build
- ../configure
- ../configure --with-pydebug
- make -j$(sysctl -n hw.ncpu)
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please add:

- make pythoninfo

It's a tool to dump various kind of informations about the platform to ease debug.

Look at the end of: https://api.cirrus-ci.com/v1/task/6753062602145792/logs/build.log

I don't know if it's possible to add a 3rd "pythoninfo_script:" section? Well, it's not needed, I'm fine with adding it at the end of build_script.

pythoninfo_script:
- cd build && make pythoninfo
Expand Down