[02/23] CI: Rename cross to fast

Message ID 20240325155540.4162990-3-amikan@ilbers.de
State New
Headers show
Series Additional CI improvements | expand

Commit Message

Anton Mikanovich March 25, 2024, 3:55 p.m. UTC
Because now both fast and standard are using cross building.

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

Patch

diff --git a/testsuite/citest.py b/testsuite/citest.py
index 92499781..7c80b910 100755
--- a/testsuite/citest.py
+++ b/testsuite/citest.py
@@ -115,14 +115,14 @@  class CcacheTest(CIBaseTest):
         self.init()
         self.perform_ccache_test(targets)
 
-class CrossTest(CIBaseTest):
+class FastTest(CIBaseTest):
 
     """
-    Start cross build for the defined set of configurations
+    Start fast build for the defined set of configurations
 
-    :avocado: tags=cross,fast,standard,full
+    :avocado: tags=fastbase,fast,standard,full
     """
-    def test_cross(self):
+    def test_fast(self):
         targets = [
             'mc:qemuarm-buster:isar-image-ci',
             'mc:qemuarm-bullseye:isar-image-ci',
@@ -137,7 +137,7 @@  class CrossTest(CIBaseTest):
         self.init()
         self.perform_build_test(targets, debsrc_cache=True)
 
-    def test_cross_rpi(self):
+    def test_fast_rpi(self):
         targets = [
             'mc:rpi-arm-v7-bullseye:isar-image-base',
                   ]