8000 gh-91960: Add FreeBSD build and test using Cirrus-CI by emaste · Pull Request #91961 · python/cpython · GitHub
[go: up one dir, main page]

Skip to content

gh-91960: Add FreeBSD build and test using Cirrus-CI #91961

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
Sep 6, 2023
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
8000
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
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
0