Jenkinsfile: Remove the upx_exists variable (which has been useless since commit 219fb02a)

Signed-off-by: Username404 <w.iron.zombie@gmail.com>
This commit is contained in:
Username404 2022-08-02 19:58:49 +02:00
parent 44d4ffb2ee
commit 62fa245196
Signed by: Username404-59
GPG Key ID: 7AB361FBB257A5D1

1
Jenkinsfile vendored
View File

@ -6,7 +6,6 @@ def buildTarget(String path, String rpmArch = 'noarch', String debArch = 'noarch
final String system_name = !path.contains('mingw') ? sh(returnStdout: true, script: 'uname -s').trim() : 'Windows'
final String linker = "/usr/bin/${path}-ld"
final String build_directory = "cmake-build-${packageArch}${suffix}"
final boolean upx_exists = fileExists('/usr/bin/upx')
final boolean is_riscv = path.contains('riscv')
// Note: CMake 3.20 or higher is needed
cmakeBuild buildDir: build_directory, buildType: 'release', cleanBuild: true, installation: 'Latest',