I tried a lot of things, but ended up unable to build gulp-pipeline-rails . script is executed locally, no problem.
The last problem I narrowed down is that I have a ruby language project that uses node, but I need node 5 . I found one snippet :
#------------------------------
Although this seems to be updating node, it does something for my ruby ββenv, where rspec does not execute :
$ pwd && bundle exec rake /home/travis/build/alienfast/gulp-pipeline-rails Could not find gem 'rspec' in any of the gem sources listed in your Gemfile or available on this machine. Run `bundle install` to install missing gems.
Question With all that said, how easy is it to use node 5 with this .travis.yml ?
language: ruby rvm: - 2.2.2 - ruby-head matrix: allow_failures: - rvm: ruby-head cache: bundler #------------------------------ # Setup before_script: - node -v # update npm - npm install npm -g # install Gulp 4 CLI tools globally from 4.0 GitHub branch - npm install https:
kross source share