在 gitlab 中找不到 yarn 命令 ci
yarn command not found in gitlab ci
我正在尝试配置我的 gitlab-ci 以使用 yarn install
而不是 npm install
我当前的 gitlab-ci.yml 看起来像:
image: node:6.9.4
cache:
paths:
- node_modules/
- .yarn
before_script:
- apt-get update -qq && apt-get install -qy libelf1
stages:
- test
test_core:
stage: test
script:
- yarn config set cache-folder .yarn
- yarn install
- npm run build
- npm run test
tags:
- 2gb
但是构建失败并出现错误:
/bin/bash: line 48: yarn: command not found
有什么我想念的吗?
我尝试安装纱线:
curl -o- -L https://yarnpkg.com/install.sh | bash
这给了我同样的错误,可能是因为我需要重新加载 bash 环境才能使 yarn 命令可用。
以上配置与 npm install
完美搭配。
请帮我解决这个问题。如果我的配置文件中缺少某些内容,或者 gitlab-ci 有问题。
谢谢。
使用最新官方节点docker镜像解决。
由于图像:6.10.0
,图像中默认安装了纱线。
但是如果你需要node-gyp
构建任何包,需要通过在脚本中添加一行来安装它:
yarn global add node-gyp
安装 yarn 后,将以下内容添加到您的 ci 脚本中:
export PATH=$HOME/.yarn/bin:$PATH
我使用 npx
(package runner) 解决了这个问题。最好只是为了这个目的扩展 docker-image
npx yarn someCommand
我用image:node:latest
有时会提示错误。 Clear Runner Caches
帮我完成任务。可能跑步者在做其他工作后没有恢复到正确的状态。
我正在尝试配置我的 gitlab-ci 以使用 yarn install
而不是 npm install
我当前的 gitlab-ci.yml 看起来像:
image: node:6.9.4
cache:
paths:
- node_modules/
- .yarn
before_script:
- apt-get update -qq && apt-get install -qy libelf1
stages:
- test
test_core:
stage: test
script:
- yarn config set cache-folder .yarn
- yarn install
- npm run build
- npm run test
tags:
- 2gb
但是构建失败并出现错误:
/bin/bash: line 48: yarn: command not found
有什么我想念的吗? 我尝试安装纱线:
curl -o- -L https://yarnpkg.com/install.sh | bash
这给了我同样的错误,可能是因为我需要重新加载 bash 环境才能使 yarn 命令可用。
以上配置与 npm install
完美搭配。
请帮我解决这个问题。如果我的配置文件中缺少某些内容,或者 gitlab-ci 有问题。 谢谢。
使用最新官方节点docker镜像解决。
由于图像:6.10.0
,图像中默认安装了纱线。
但是如果你需要node-gyp
构建任何包,需要通过在脚本中添加一行来安装它:
yarn global add node-gyp
安装 yarn 后,将以下内容添加到您的 ci 脚本中:
export PATH=$HOME/.yarn/bin:$PATH
我使用 npx
(package runner) 解决了这个问题。最好只是为了这个目的扩展 docker-image
npx yarn someCommand
我用image:node:latest
有时会提示错误。 Clear Runner Caches
帮我完成任务。可能跑步者在做其他工作后没有恢复到正确的状态。