mirror of https://github.com/icedream/icecon.git
Jenkinsfile: Fix UPX not available in PATH error.
parent
6f7b4daa7e
commit
15c418e9b6
|
@ -9,8 +9,7 @@ def binext(os) {
|
||||||
|
|
||||||
def upx(file) {
|
def upx(file) {
|
||||||
// Install upx
|
// Install upx
|
||||||
tool "UPX v3.91"
|
withEnv(["PATH+=${tool "UPX v3.91"}"]) {
|
||||||
|
|
||||||
switch("${env.GOOS}.${env.GOARCH}") {
|
switch("${env.GOOS}.${env.GOARCH}") {
|
||||||
case "linux.amd64":
|
case "linux.amd64":
|
||||||
case "linux.386":
|
case "linux.386":
|
||||||
|
@ -31,6 +30,7 @@ def upx(file) {
|
||||||
break
|
break
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
def withGoEnv(os, arch, f) {
|
def withGoEnv(os, arch, f) {
|
||||||
// Install go
|
// Install go
|
||||||
|
|
Loading…
Reference in New Issue