Ho provato molte cose, ma alla fine non sono riuscito a ottenere la build per gulp-pipeline-rails in esecuzione. Il script
viene eseguito localmente, nessun problema.travis-ci ruby build con il nodo 5
L'ultimo problema che ho ristretto è che ho un progetto di lingua ruby
che utilizza il nodo, ma I need node 5. Ho trovato one snippet:
#------------------------------
# Update the node version
env:
- TRAVIS_NODE_VERSION="5"
install:
- pwd
- rm -rf ~/.nvm && git clone https://github.com/creationix/nvm.git ~/.nvm && (cd ~/.nvm && git checkout `git describe --abbrev=0 --tags`) && source ~/.nvm/nvm.sh && nvm install $TRAVIS_NODE_VERSION
- npm install
Anche se questo sembra per ottenere il nodo aggiornato, fa qualcosa al mio rubino ENV dove fails to execute rspec:
$ 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.
Domanda Con tutto ciò che ha detto, come devo semplicemente usare il Nodo 5 con questo .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://github.com/gulpjs/gulp-cli/tarball/4.0 -g
#------------------------------
# Build
script: bundle exec rake