From 327ef3bc9244b3e22e1475bf279192ea39cd64d2 Mon Sep 17 00:00:00 2001 From: Josh Stone Date: Thu, 12 Nov 2015 18:30:44 -0800 Subject: [PATCH] Start an ssh-agent in travis --- .travis.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.travis.yml b/.travis.yml index 52c3dce..920692f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,6 +23,7 @@ after_success: | [ $TRAVIS_RUST_VERSION = nightly ] && openssl aes-256-cbc -K $encrypted_9e86330b283d_key -iv $encrypted_9e86330b283d_iv -in .travis/deploy.enc -out .travis/deploy -d && chmod 600 .travis/deploy && + eval "$(ssh-agent -s)" && ssh-add .travis/deploy && pip install ghp-import --user $USER && cp doc/index.html target/doc/ &&