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.
This commit is contained in:
Oliver Smith 2019-02-15 10:56:55 +01:00
parent 28502356d6
commit 6d3d5723b6
No known key found for this signature in database
GPG key ID: 5AE7F5513E0885CB

View file

@ -53,6 +53,11 @@ def test_qt_versions(args):
if pkgver == "9999": if pkgver == "9999":
pkgver = apkbuild["_pkgver"] 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 # Compare
if pkgver == pkgver_upstream: if pkgver == pkgver_upstream:
continue continue