From e3beaa7f0decbfe9722964ba596544a16e0ccbaf Mon Sep 17 00:00:00 2001 From: The_Spider Date: Sat, 30 Oct 2021 19:30:24 -0500 Subject: [PATCH] removes upx --- Jenkinsfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index a0e9924..0a69d7b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -56,9 +56,8 @@ spec: container("compile") { sh """ apt update - apt install --no-install-recommends libusb-1.0-0-dev gcc g++ upx-ucl + apt install --no-install-recommends libusb-1.0-0-dev gcc g++ GOOS=linux GOARCH=amd64 go build -ldflags="-s -w" -o go-temper ./cmd/go-temper - upx --brute go-temper """ } }