Builder libpsl-solaris10-i386 Build #332
Results:
Failed shell_3
SourceStamp:
| Project | rockdaboot/libpsl |
| Repository | https://github.com/rockdaboot/libpsl |
| Branch | es/python-find_program |
| Revision | b201380ede40b4d83b44eb9c5df9b56f3e43b2d4 |
| Got Revision | b201380ede40b4d83b44eb9c5df9b56f3e43b2d4 |
| Changes | 1 change |
BuildSlave:
unstable10xReason:
The AnyBranchScheduler scheduler named 'schedule-libpsl-pr' triggered this build
Steps and Logfiles:
Build Properties:
| Name | Value | Source |
|---|---|---|
| branch | es/python-find_program | Build |
| builddir | /export/home/buildbot/slave/libpsl-solaris10-i386 | slave |
| buildername | libpsl-solaris10-i386 | Builder |
| buildnumber | 332 | Build |
| codebase | Build | |
| got_revision | b201380ede40b4d83b44eb9c5df9b56f3e43b2d4 | Git |
| project | rockdaboot/libpsl | Build |
| repository | https://github.com/rockdaboot/libpsl | Build |
| revision | b201380ede40b4d83b44eb9c5df9b56f3e43b2d4 | Build |
| scheduler | schedule-libpsl-pr | Scheduler |
| slavename | unstable10x | BuildSlave |
| workdir | /export/home/buildbot/slave/libpsl-solaris10-i386 | slave (deprecated) |
Forced Build Properties:
| Name | Label | Value |
|---|
Responsible Users:
- Eli Schwartzeschwartz93@gmail.com
Timing:
| Start | Thu Mar 7 23:07:23 2024 |
| End | Thu Mar 7 23:08:30 2024 |
| Elapsed | 1 mins, 6 secs |
All Changes:
:
Change #192567
Category None Changed by Eli Schwartz <eschwartz93@gmail.com> Changed at Thu 07 Mar 2024 21:39:07 Repository https://github.com/rockdaboot/libpsl Project rockdaboot/libpsl Branch es/python-find_program Revision b201380ede40b4d83b44eb9c5df9b56f3e43b2d4 Comments
meson: simplify python3 detection Don't look up the python module's find_installation() method. This is intended for detecting lots of information needed for compiling and installing python modules including the C-API interface to libpython, as well as site-packages layout information. It's totally uninvolved with what we are doing, which is executing a script. For this, we just need any python program. Meson is written in python3, so we know in meson.build that we have that available -- which is also why meson guarantees that `find_program('python3')` always returns a valid python. Even if no python is installed on the system, meson will return the `meson.exe runpython` shim which runs the script using the copy of python bundled inside the redistributable meson Windows executable.Changed files
- meson.build