Skip to content
Merged
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
10 changes: 8 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
language: ruby
env:
- TRAVIS_CONFIG_DIR=.travis
before_install:
- sh .install_multiple_scms.sh
- cd $TRAVIS_CONFIG_DIR
- sh .travis_ssh_setup.sh
install:
- gem install posix-spawn
- sh .install_multiple_scms.sh
- sh .install_dependencies.sh
- gem install posix-spawn
before_script:
- cd $TRAVIS_BUILD_DIR
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,8 +1,5 @@
sudo apt-get install -y cvs
sudo ln -s /usr/bin/cvs /usr/bin/cvsnt
sudo apt-get install -y bzr
sudo apt-get install -y mercurial
sudo sh -c 'echo "deb http://opensource.wandisco.com/ubuntu precise svn18" >> /etc/apt/sources.list.d/subversion18.list'
sudo wget -q http://opensource.wandisco.com/wandisco-debian.gpg -O- | sudo apt-key add -
sudo apt-get update
sudo apt-get install -y subversion
sudo apt-get install -y subversion cvs bzr mercurial
sudo ln -s /usr/bin/cvs /usr/bin/cvsnt
3 changes: 3 additions & 0 deletions .travis/.travis_ssh_setup.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
ssh-keygen -t rsa -f ~/.ssh/id_rsa -N "" -q
cat ~/.ssh/id_rsa.pub >> ~/.ssh/authorized_keys
ssh-keyscan -t rsa `hostname` >> ~/.ssh/known_hosts