mirror of
https://git.yoctoproject.org/poky
synced 2026-06-01 13:09:50 +00:00
ptest: Fix dependency/ordering issue
We've seen occasional issues on the autobuilder where files appear during do_populate_sysroot and this is due to the ptest installation happening in parallel. This fixes the order to be deterministic. (From OE-Core rev: 0ed1641d870f4bb5735aeeb7bd29cc196e61b7cc) (From OE-Core rev: 96aa9bf8880088c9a710c86cc8ee106138152a98) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -52,7 +52,7 @@ do_install_ptest_base[cleandirs] = "${D}${PTEST_PATH}"
|
|||||||
|
|
||||||
addtask configure_ptest_base after do_configure before do_compile
|
addtask configure_ptest_base after do_configure before do_compile
|
||||||
addtask compile_ptest_base after do_compile before do_install
|
addtask compile_ptest_base after do_compile before do_install
|
||||||
addtask install_ptest_base after do_install before do_package
|
addtask install_ptest_base after do_install before do_package do_populate_sysroot
|
||||||
|
|
||||||
python () {
|
python () {
|
||||||
if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
|
if not bb.data.inherits_class('native', d) and not bb.data.inherits_class('cross', d):
|
||||||
|
|||||||
Reference in New Issue
Block a user