Skip to content

Commit

Permalink
[FIX] .travis.yml: npm v18.0.0 is not compatible with ubuntu used fro…
Browse files Browse the repository at this point in the history
…m travis (#371)

More info about:
 - https://travis-ci.community/t/the-command-npm-config-set-spin-false-failed-and-exited-with-1-during/12909/4

Summary it requires GLIBC_2.28 but it is not available in ubuntu used from travis
  • Loading branch information
moylop260 committed May 20, 2022
1 parent 5c15bca commit d260411
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
6 changes: 6 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ cache:
directories:
- $HOME/.cache/pip

# node 18 is not compatible with current ubuntu version used in travis
# More info about:
# - https://travis-ci.community/t/the-command-npm-config-set-spin-false-failed-and-exited-with-1-during/12909/4
node_js:
- 17

matrix:
include:
- python: 2.7
Expand Down
5 changes: 4 additions & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,10 @@ passenv =

commands =
python --version
nodeenv --python-virtualenv
# node 18 is not compatible with current ubuntu version used in travis
# More info about:
# - https://travis-ci.community/t/the-command-npm-config-set-spin-false-failed-and-exited-with-1-during/12909/4
nodeenv --python-virtualenv -n 17.9.0
npm install -g --no-package-lock --no-save eslint
eslint --version
coverage run setup.py test
Expand Down

0 comments on commit d260411

Please sign in to comment.