remove unneeded output

This commit is contained in:
Grant Limberg 2020-02-04 09:39:13 -08:00
parent 417cdc17dc
commit cc52835ce3
No known key found for this signature in database
GPG key ID: 2BA62CCABBB4095A

2
Jenkinsfile vendored
View file

@ -52,12 +52,10 @@ def buildStaticBinaries() {
dir ("build") {
checkout scm
}
sh "echo ${distro}-${platform}"
def runtime = docker.image("ztbuild/${distro}-${platform}:latest")
runtime.inside {
dir("build") {
sh 'make -j8 ZT_STATIC=1 all'
sh "file ./zerotier-one"
sh "mv zerotier-one zerotier-one-static-${platform}"
stash includes: 'zerotier-one-static-*', name: "static-${platform}"
}