本文介绍了使用NVM在GitLab-ci中安装特定NodeJS版本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我尝试使用GitLab-ci安装NVM时,收到以下错误消息:
.gitlab-ci.yml文件
stages:
- test
Testing:
tags:
- docker
stage: test
image: ubuntu:18.04
before_script:
- apt-get update
- apt-get install curl -y
# Install Node Version Manager (NVM) so we can change the node version
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash
- nvm --version
错误消息:
$ curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash
% Total % Received % Xferd Average Speed Time Time Time Current
Dload Upload Total Spent Left Speed
100 13527 100 13527 0 0 99463 0 --:--:-- --:--:-- --:--:-- 99463
=> Downloading nvm as script to '/root/.nvm'
=> Appending nvm source string to /root/.bashrc
=> Appending bash_completion source string to /root/.bashrc
=> Close and reopen your terminal to start using nvm or run the following to use it now:
export NVM_DIR="$HOME/.nvm"
[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh" # This loads nvm
[ -s "$NVM_DIR/bash_completion" ] && . "$NVM_DIR/bash_completion" # This loads nvm bash_completion
$ nvm --version
/bin/bash: line 116: nvm: command not found
ERROR: Job failed: exit code 1
当我尝试使用exec bash
在gilab-ci中重新加载终端时,gilab任务提前结束,并且没有运行脚本的睡觉。
如何通过GitLab-ci使用安装和使用NVM?
nvm
更新脚本以将推荐答案命令加载到您的终端。". ~/.nvm/nvm.sh"
# Install Node Version Manager (NVM) so we can change the node version
- curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.36.0/install.sh | bash
- ". ~/.nvm/nvm.sh"
- nvm --version
这篇关于使用NVM在GitLab-ci中安装特定NodeJS版本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!