Lock down nodejs version
The new Travis Trusty image uses node 8 (latest LTS) as the default. Node 8 is incompatible with some modules used for the UI.
This commit is contained in:
parent
1a1552f05a
commit
7a7c8204a7
|
@ -43,6 +43,7 @@ before_install:
|
|||
install:
|
||||
- if [[ -z "$SKIP_NOMAD_TESTS" ]]; then make deps ; fi
|
||||
- if [[ "$RUN_STATIC_CHECKS" ]]; then make lint-deps ; fi
|
||||
- if [[ "$RUN_UI_TESTS" ]]; then . $HOME/.nvm/nvm.sh && cd ui && nvm use && cd .. ; fi
|
||||
|
||||
script:
|
||||
- sudo -E "PATH=$PATH" make travis
|
||||
|
|
|
@ -9,7 +9,7 @@ trap 'kill ${PING_LOOP_PID}' EXIT HUP INT QUIT TERM
|
|||
|
||||
if [ "$RUN_STATIC_CHECKS" ]; then
|
||||
make check
|
||||
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
||||
if [ "$TRAVIS_OS_NAME" == "linux" ]; then
|
||||
make checkscripts
|
||||
fi
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue