From 6d3d5723b65596b511abf8d3cbc4e11beb72cf16 Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 15 Feb 2019 10:56:55 +0100 Subject: [PATCH] CI: ignore _git packages in Qt version check Do not fail the CI check with the _git packages that have been added in the initial unity8 packaging. --- .gitlab-ci/testcases/test_upstream_compatibility.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.gitlab-ci/testcases/test_upstream_compatibility.py b/.gitlab-ci/testcases/test_upstream_compatibility.py index 14dd2efa8..459010596 100644 --- a/.gitlab-ci/testcases/test_upstream_compatibility.py +++ b/.gitlab-ci/testcases/test_upstream_compatibility.py @@ -53,6 +53,11 @@ def test_qt_versions(args): if pkgver == "9999": pkgver = apkbuild["_pkgver"] + # We had to add a few qt5 git packages for unity8 (!27), obviously we + # can't compare the version there. + if "_git" in pkgver: + continue + # Compare if pkgver == pkgver_upstream: continue