diff options
author | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-11-22 18:29:38 +0100 |
---|---|---|
committer | David RodrÃguez <deivid.rodriguez@riseup.net> | 2019-12-18 21:39:00 +0100 |
commit | 6ee2f75a75b31fc8c65e55e33778486b844e3166 (patch) | |
tree | 3ca86e724d554cc4ae5e2ce25e1cb642ebb803b7 /Rakefile | |
parent | 56aa17c5a7c574f5aa360b4840a2ffc08395b8b2 (diff) | |
download | bundler-6ee2f75a75b31fc8c65e55e33778486b844e3166.tar.gz |
Do extra root setup only when needed
Regular builds shouldn't need any extra configuration deviating from a
standard ubuntu setup.
Diffstat (limited to 'Rakefile')
-rw-r--r-- | Rakefile | 14 |
1 files changed, 0 insertions, 14 deletions
@@ -36,20 +36,6 @@ namespace :spec do Spec::Rubygems.dev_setup end - namespace :travis do - task :deps do - # Give the travis user a name so that git won't fatally error - system "sudo sed -i 's/1000::/1000:Travis:/g' /etc/passwd" - # Strip secure_path so that RVM paths transmit through sudo -E - system "sudo sed -i '/secure_path/d' /etc/sudoers" - # Install graphviz so that the viz specs can run - sh "sudo apt-get install graphviz -y" - - # Install the other gem deps, etc - Rake::Task["spec:deps"].invoke - end - end - task :clean do rm_rf "tmp" end |