Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test encrypted private key #106

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@ branches:
- "/^\\d+\\.\\d+.*$/"
os:
- linux
before_install:
# Decrypt private key for SSH testing
- openssl aes-256-cbc -K $encrypted_e1d0fadceb59_key -iv $encrypted_e1d0fadceb59_iv -in test_user.rsa.enc -out /tmp/test_user.rsa -d
- eval "$(ssh-agent -s)"
- chmod 600 /tmp/test_user.rsa
- ssh-add /tmp/test_user.rsa
- rm /tmp/test_user.rsa
install:
- wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh -O $HOME/miniconda.sh
- bash $HOME/miniconda.sh -b -p $HOME/miniconda
Expand Down
Binary file added test_user.rsa.enc
Binary file not shown.