Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[FIX] .travis.yml: npm v18.0.0 GLIBC_2.28 not compatible with ubuntu … #371

Merged
merged 1 commit into from
May 20, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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