Skip to content

Commit

Permalink
Update Jenkinsfile for upload to download.eclipse.org
Browse files Browse the repository at this point in the history
  • Loading branch information
JEnoch committed May 19, 2020
1 parent ce186b8 commit 068155e
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,12 @@ pipeline {
}
stage('Deploy to to download.eclipse.org') {
steps {
sh '''
ssh [email protected] mkdir -p /home/data/httpd/download.eclipse.org/zenoh/zenoh-c/${TAG}
scp build/crossbuilds/*/*.deb* build/crossbuilds/*/*.rpm* /home/data/httpd/download.eclipse.org/zenoh/zenoh-c/${TAG}/
'''
sshagent ( ['projects-storage.eclipse.org-bot-ssh']) {
sh '''
ssh [email protected] mkdir -p /home/data/httpd/download.eclipse.org/zenoh/zenoh-c/${TAG}
scp build/crossbuilds/*/*.deb* build/crossbuilds/*/*.rpm* [email protected]:/home/data/httpd/download.eclipse.org/zenoh/zenoh-c/${TAG}/
'''
}
}
}
}
Expand Down

0 comments on commit 068155e

Please sign in to comment.