Skip to content
Snippets Groups Projects
Commit 592996dc authored by Holger Levsen's avatar Holger Levsen
Browse files

add risc64 to the multiarch versionskew tests for trixie and sid

parent d25bf083
No related branches found
No related tags found
No related merge requests found
......@@ -29,6 +29,12 @@ multiarch_versionskew() {
else
DISTRO=$1
fi
case $DISTRO in
trixie|sid) RELEASE_ARCHS="('amd64', 'arm64', 'armel', 'armhf', 'i386', 'mips64el', 'ppc64el', 'risc64', 's390x')"
bullseye|bookworm) RELEASE_ARCHS="('amd64', 'arm64', 'armel', 'armhf', 'i386', 'mips64el', 'ppc64el', 's390x')"
*) echo unknown distro ; exit 1 ;;
esac
#
# SQL query for detecting multi-arch version skew
#
......@@ -37,8 +43,7 @@ multiarch_versionskew() {
FROM packages WHERE
release='$DISTRO' AND
multi_arch='same' AND
architecture IN ('amd64', 'arm64', 'armel', 'armhf', 'i386',
'mips64el', 'ppc64el', 's390x')
architecture $RELEASE_ARCHS
ORDER BY source) AS all_versions
GROUP BY source, package
HAVING count(*) > 1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment