Set the package architectures of x86 packages to i386 instead of i686

This commit is contained in:
Username404 2021-08-17 17:48:16 +02:00
parent 05e8c5c9b6
commit 3b31ad0c6d
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1
1 changed files with 1 additions and 1 deletions

2
Jenkinsfile vendored
View File

@ -25,7 +25,7 @@ pipeline { // Multi-branch pipeline script for Yerbacon.
steps {
echo "Building the ${env.BRANCH_NAME} branch.."
buildTarget('x86_64-linux-gnu', 'x86_64', 'amd64')
buildTarget('i686-linux-gnu', 'i686', 'i686')
buildTarget('i686-linux-gnu', 'i386', 'i386')
buildTarget('arm-linux-gnueabi', 'armv4l', 'armel')
buildTarget('arm-linux-gnueabihf', 'armv7hl', 'armhf')
buildTarget('aarch64-linux-gnu', 'aarch64', 'arm64', false)