From 3b31ad0c6d67252538382025228468c815136f6c Mon Sep 17 00:00:00 2001 From: Username404 Date: Tue, 17 Aug 2021 17:48:16 +0200 Subject: [PATCH] Set the package architectures of x86 packages to i386 instead of i686 --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 80a33c6..eb91f06 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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)