From 62fa2451963acaaabe6d2db79316adde241d337c Mon Sep 17 00:00:00 2001 From: Username404 Date: Tue, 2 Aug 2022 19:58:49 +0200 Subject: [PATCH] Jenkinsfile: Remove the upx_exists variable (which has been useless since commit 219fb02a) Signed-off-by: Username404 --- Jenkinsfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 0ef62f7..b218200 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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',