Przeglądaj źródła

CI: Move qemu-stretch targets to bullseye

Update common test targets from oldoldstable stretch to the current
stable bullseye.

Left qemui386-stretch for backward compatibility testing.

Signed-off-by: Anton Mikanovich <amikan@ilbers.de>
Anton Mikanovich 3 lat temu
rodzic
commit
19bd816d39

+ 7 - 12
testsuite/build_test/build_test.py

@@ -27,15 +27,15 @@ class ReproTest(CIBaseTest):
     def test_repro_signed(self):
         targets = [
             'mc:de0-nano-soc-bullseye:isar-image-base',
-            'mc:qemuarm64-stretch:isar-image-base'
+            'mc:qemuarm64-bullseye:isar-image-base'
                   ]
 
         self.perform_repro_test(targets, 1)
 
     def test_repro_unsigned(self):
         targets = [
-            'mc:qemuamd64-stretch:isar-image-base',
-            'mc:qemuarm-stretch:isar-image-base'
+            'mc:qemuamd64-bullseye:isar-image-base',
+            'mc:qemuarm-bullseye:isar-image-base'
                   ]
 
         self.perform_repro_test(targets, 0)
@@ -60,11 +60,9 @@ class CrossTest(CIBaseTest):
     """
     def test_cross(self):
         targets = [
-            'mc:qemuarm-stretch:isar-image-base',
             'mc:qemuarm-buster:isar-image-base',
             'mc:qemuarm-bullseye:isar-image-base',
-            'mc:qemuarm64-stretch:isar-image-base',
-            'mc:qemuamd64-stretch:isar-image-base',
+            'mc:qemuarm64-bullseye:isar-image-base',
             'mc:de0-nano-soc-bullseye:isar-image-base',
             'mc:stm32mp15x-buster:isar-image-base',
             'mc:rpi-stretch:isar-image-base'
@@ -100,7 +98,7 @@ class SdkTest(CIBaseTest):
     :avocado: tags=sdk,fast,full
     """
     def test_sdk(self):
-        targets = ['mc:qemuarm-stretch:isar-image-base']
+        targets = ['mc:qemuarm-bullseye:isar-image-base']
 
         self.perform_build_test(targets, 1, 'do_populate_sdk')
 
@@ -113,20 +111,17 @@ class NoCrossTest(CIBaseTest):
     """
     def test_nocross(self):
         targets = [
-            'mc:qemuarm-stretch:isar-image-base',
             'mc:qemuarm-buster:isar-image-base',
             'mc:qemuarm-bullseye:isar-image-base',
-            'mc:qemuarm64-stretch:isar-image-base',
+            'mc:qemuarm64-bullseye:isar-image-base',
             'mc:qemui386-stretch:isar-image-base',
             'mc:qemui386-buster:isar-image-base',
             'mc:qemui386-bullseye:isar-image-base',
-            'mc:qemuamd64-stretch:isar-image-base',
             'mc:qemuamd64-buster:isar-image-base',
             'mc:qemuamd64-buster-tgz:isar-image-base',
             'mc:qemuamd64-buster-cpiogz:isar-image-base',
             'mc:qemuamd64-buster:isar-initramfs',
             'mc:qemuamd64-bullseye:isar-image-base',
-            'mc:qemumipsel-stretch:isar-image-base',
             'mc:qemumipsel-buster:isar-image-base',
             'mc:qemumipsel-bullseye:isar-image-base',
             'mc:qemuriscv64-sid-ports:isar-image-base',
@@ -180,7 +175,7 @@ class RebuildTest(CIBaseTest):
             file.write('do_fetch_append() {\n\n}')
 
         try:
-            self.perform_build_test('mc:qemuamd64-stretch:isar-image-base',
+            self.perform_build_test('mc:qemuamd64-bullseye:isar-image-base',
                                     is_cross_build, None)
         finally:
             self.restorefile(dpkgbase_file)

+ 6 - 6
testsuite/vm_boot_test/vm_boot_test.py

@@ -101,17 +101,17 @@ class VmBootTestFast(VmBase):
 
     :avocado: tags=fast,full
     """
-    def test_arm_stretch(self):
-        self.vm_start('arm','stretch')
+    def test_arm_bullseye(self):
+        self.vm_start('arm','bullseye')
 
     def test_arm_buster(self):
         self.vm_start('arm','buster')
 
-    def test_arm64_stretch(self):
-        self.vm_start('arm64','stretch')
+    def test_arm64_bullseye(self):
+        self.vm_start('arm64','bullseye')
 
-    def test_amd64_stretch(self):
-        self.vm_start('amd64','stretch')
+    def test_amd64_bullseye(self):
+        self.vm_start('amd64','bullseye')
 
 class VmBootTestFull(VmBase):