[v4,5/7] CI: Fix used chroot recipe name

Message ID 20230511105020.1881496-6-amikan@ilbers.de
State Superseded, archived
Headers show
Series Imager schroot migration | expand

Commit Message

Anton Mikanovich May 11, 2023, 10:50 a.m. UTC
We've moved to schroot, so need to adjust recipe names for sstate test
case in CI.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
---
 testsuite/cibase.py | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

Patch

diff --git a/testsuite/cibase.py b/testsuite/cibase.py
index d1543a9b..6b532651 100755
--- a/testsuite/cibase.py
+++ b/testsuite/cibase.py
@@ -149,7 +149,7 @@  class CIBaseTest(CIBuilder):
         if not all([
                 check_executed_tasks('isar-bootstrap-target',
                     ['do_bootstrap_setscene', '!do_bootstrap']),
-                check_executed_tasks('buildchroot-target',
+                check_executed_tasks('sbuild-chroot-target',
                     ['do_rootfs_install_setscene', '!do_rootfs_install']),
                 check_executed_tasks('isar-image-base-*',
                     ['do_rootfs_install_setscene', '!do_rootfs_install'])
@@ -173,8 +173,8 @@  class CIBaseTest(CIBuilder):
         if not all([
                 check_executed_tasks('isar-bootstrap-target',
                     ['do_bootstrap_setscene']),
-                check_executed_tasks('buildchroot-target',
-                    ['!do_buildchroot_deploy']),
+                check_executed_tasks('sbuild-chroot-target',
+                    ['!do_sbuildchroot_deploy']),
                 check_executed_tasks('hello',
                     ['do_dpkg_build_setscene', 'do_deploy_deb', '!do_dpkg_build'])
             ]):
@@ -187,7 +187,7 @@  class CIBaseTest(CIBuilder):
         if not all([
                 check_executed_tasks('isar-bootstrap-target',
                     ['do_bootstrap_setscene', '!do_bootstrap']),
-                check_executed_tasks('buildchroot-target',
+                check_executed_tasks('sbuild-chroot-target',
                     ['do_rootfs_install_setscene', '!do_rootfs_install']),
                 check_executed_tasks('hello',
                     ['do_fetch', 'do_dpkg_build']),