This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author eric.snow
Recipients christian.heimes, eric.snow, gregory.p.smith, gvanrossum, steve.dower
Date 2021-11-02.23:29:44
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1635895785.09.0.174517598815.issue45695@roundup.psfhosted.org>
In-reply-to
Content
Currently we don't test builds done outside the source tree, neither on GitHub nor the buildbots. [1]  As a result, such builds get broken occasionally.  I've certainly broken then a couple times, inadvertently.  It would be helpful if we tested out-of-tree builds on GitHub, or at least on a stable buildbot.

FTR, to do an out-of-tree build locally and test it:

mkdir ../build
cd ../build
../cpython/configure
make
./python -m test


[1] Actually I recently added test.test_tools.test_freeze.TestFreeze.test_freeze_simple_script which happens to do an out-of-tree build incidentally.  However, we should be testing out-of-tree builds explicitly.
History
Date User Action Args
2021-11-02 23:29:45eric.snowsetrecipients: + eric.snow, gvanrossum, gregory.p.smith, christian.heimes, steve.dower
2021-11-02 23:29:45eric.snowsetmessageid: <1635895785.09.0.174517598815.issue45695@roundup.psfhosted.org>
2021-11-02 23:29:45eric.snowlinkissue45695 messages
2021-11-02 23:29:44eric.snowcreate