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:
parent
28502356d6
commit
6d3d5723b6
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue