From cab89b38c0eb70ddf02279362181441cf4622573 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 18 Apr 2017 10:42:38 +0200 Subject: [PATCH] Publish intermediate dependencies in a http accessible directory. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Those dependencies will be used by travis CI in other projects. We want to avoid other project to need a ssh key to get them : - To avoid spread(and maintenance) of ssh key. - For PR coming from another repositories, ssh key is not available. By making those dependencies available by http, we simplify the process. Fix partially #34. Archives download need to be updated in client projects. --- travis/deploy.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis/deploy.sh b/travis/deploy.sh index f52f89b..f680d16 100755 --- a/travis/deploy.sh +++ b/travis/deploy.sh @@ -12,7 +12,7 @@ if [[ "x$DEPS_ARCHIVES" != "x" ]] then scp -vp -i ${SSH_KEY} \ ${DEPS_ARCHIVES} \ - nightlybot@download.kiwix.org:~/travis_deps/ + nightlybot@download.kiwix.org:/var/www/tmp.kiwix.org/ci/ fi NIGHTLY_ARCHIVES=$(find $NIGHTLY_ARCHIVES_DIR -type f)