From 37b96033e00e0d5cd9230b1b999ad5dd46c055cc Mon Sep 17 00:00:00 2001 From: Julien Enoch Date: Fri, 5 Feb 2021 17:19:35 +0100 Subject: [PATCH] Jenkinsfile: fix builds within Docker for linux --- Jenkinsfile | 2 -- 1 file changed, 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 21c10e6df..fb336f92c 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -88,7 +88,6 @@ pipeline { tar -cvf eclipse-zenoh-c-${LABEL}-x86_64-unknown-linux-gnu.tar --strip-components 3 target/x86_64-unknown-linux-gnu/release/*.so tar -rvf eclipse-zenoh-c-${LABEL}-x86_64-unknown-linux-gnu.tar include gzip eclipse-zenoh-c-${LABEL}-x86_64-unknown-linux-gnu.tar - tar -czvf eclipse-zenoh-c-${LABEL}-examples-x86_64-unknown-linux-gnu.tar.gz --exclude 'target/x86_64-unknown-linux-gnu/release/examples/*.*' --exclude 'target/x86_64-unknown-linux-gnu/release/examples/*-*' --strip-components 4 target/x86_64-unknown-linux-gnu/release/examples/* ''' } } @@ -114,7 +113,6 @@ pipeline { tar -cvf eclipse-zenoh-c-${LABEL}-i686-unknown-linux-gnu.tar --strip-components 3 target/i686-unknown-linux-gnu/release/*.so tar -rvf eclipse-zenoh-c-${LABEL}-i686-unknown-linux-gnu.tar include gzip eclipse-zenoh-c-${LABEL}-i686-unknown-linux-gnu.tar - tar -czvf eclipse-zenoh-c-${LABEL}-examples-i686-unknown-linux-gnu.tar.gz --exclude 'target/i686-unknown-linux-gnu/release/examples/*.*' --exclude 'target/i686-unknown-linux-gnu/release/examples/*-*' --strip-components 4 target/i686-unknown-linux-gnu/release/examples/* ''' } }