Created
June 5, 2016 19:00
-
-
Save jarun/df5d864f0b2600564c9bc13cfaca7497 to your computer and use it in GitHub Desktop.
How to install Travis CI locally on Ubuntu 16.04
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
sudo apt install ruby ruby-dev | |
sudo gem install travis | |
# install path: /var/lib/gems/ |
this could be usefull if u can't build native extensions (worked for me)
I had the same problem than you. I was in a clean Ubuntu box.
In the end I was able to build travis-cli after installing these dependencies:
* ruby-dev * gcc * libffi-dev * make
Regards,
Dante
sudo apt install ruby-dev libffi-dev make gcc
sudo gem install travis
# install path: /var/lib/gems/
sudo apt install ruby-dev libffi-dev make gcc sudo gem install travis # install path: /var/lib/gems/
It works well. thx man
try
Thanks
Thank you!!
thanks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
love u