aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorNikolaus Rath <Nikolaus@rath.org>2019-02-27 21:07:02 +0000
committerNikolaus Rath <Nikolaus@rath.org>2019-02-27 21:27:39 +0000
commitd299217510330fb5fb85a28f5f1d9eae732be2db (patch)
tree3351a6cde10ed9bbc6c9cb4b553b03b9581f289a /test
parentfda6c8f8623657de0da31f8025bb5ec389a04be9 (diff)
downloadsshfs-d299217510330fb5fb85a28f5f1d9eae732be2db.tar
sshfs-d299217510330fb5fb85a28f5f1d9eae732be2db.tar.gz
sshfs-d299217510330fb5fb85a28f5f1d9eae732be2db.tar.bz2
sshfs-d299217510330fb5fb85a28f5f1d9eae732be2db.zip
Travis CI: Use Xenial instead of Trusty.
Diffstat (limited to 'test')
-rwxr-xr-xtest/travis-install.sh7
1 files changed, 1 insertions, 6 deletions
diff --git a/test/travis-install.sh b/test/travis-install.sh
index 9a46719..23cc0ad 100755
--- a/test/travis-install.sh
+++ b/test/travis-install.sh
@@ -4,11 +4,6 @@ set -e
# Meson 0.45 requires Python 3.5 or newer
sudo python3 -m pip install pytest meson==0.44
-wget https://github.com/ninja-build/ninja/releases/download/v1.7.2/ninja-linux.zip
-unzip ninja-linux.zip
-chmod 755 ninja
-sudo chown root:root ninja
-sudo mv -fv ninja /usr/local/bin
valgrind --version
ninja --version
meson --version
@@ -29,7 +24,7 @@ ls -d1 /usr/local/lib/*-linux-gnu | sudo tee /etc/ld.so.conf.d/usrlocal.conf
sudo ldconfig
# Setup ssh
-ssh-keygen -b 768 -t rsa -f ~/.ssh/id_rsa -P ''
+ssh-keygen -b 1024 -t rsa -f ~/.ssh/id_rsa -P ''
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
chmod 600 ~/.ssh/authorized_keys
ssh -o "StrictHostKeyChecking=no" localhost echo "SSH connection succeeded"