Skip to content

Commit

Permalink
Jenkinsfile: fix .deb generation following removal of zenoh-router crate
Browse files Browse the repository at this point in the history
  • Loading branch information
JEnoch committed Mar 29, 2021
1 parent 7f1b2bf commit 9de4813
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ pipeline {
rustup default ${RUST_TOOLCHAIN} && \
cargo build --release --bins --lib --examples && \
if [[ ${GIT_TAG} != origin/* ]]; then \
cargo deb -p zenoh-router && \
cargo deb -p zenoh && \
cargo deb -p zenoh-rest && \
cargo deb -p zenoh-storages && \
./gen_zenoh_deb.sh x86_64-unknown-linux-gnu amd64 \
Expand Down Expand Up @@ -157,7 +157,7 @@ pipeline {
rustup default ${RUST_TOOLCHAIN} && \
cargo build --release --bins --lib --examples && \
if [[ ${GIT_TAG} != origin/* ]]; then \
cargo deb -p zenoh-router && \
cargo deb -p zenoh && \
cargo deb -p zenoh-rest && \
cargo deb -p zenoh-storages && \
./gen_zenoh_deb.sh i686-unknown-linux-gnu i386 \
Expand Down Expand Up @@ -185,7 +185,7 @@ pipeline {
rustup default ${RUST_TOOLCHAIN} && \
cargo build --release --bins --lib --examples && \
if [[ ${GIT_TAG} != origin/* ]]; then
cargo deb -p zenoh-router && \
cargo deb -p zenoh && \
cargo deb -p zenoh-rest && \
cargo deb -p zenoh-storages && \
./gen_zenoh_deb.sh aarch64-unknown-linux-gnu aarch64 \
Expand Down

0 comments on commit 9de4813

Please sign in to comment.