Give Meson first preference for CI Jobs
- Now that a lot of repos are being migrated to meson , it
would be good to check for meson first, so that if meson
changes are good, then we can remove the autotools or cmake
files.
Signed-off-by: Manojkiran Eda <manojkiran.eda@gmail.com>
Change-Id: I9428d2302560e86083001c256165888a94f1787b
diff --git a/scripts/unit-test.py b/scripts/unit-test.py
index 71948d8..0d25a28 100755
--- a/scripts/unit-test.py
+++ b/scripts/unit-test.py
@@ -967,7 +967,7 @@
class Package(object):
def __init__(self, name=None, path=None):
- self.supported = [Autotools, Meson, CMake]
+ self.supported = [Meson, Autotools, CMake]
self.name = name
self.path = path
self.test_only = False