AWS CodeBuildでnode_modulesをキャッシュしたらハマった
はじめに
CodeBuildでnode_modules
をキャッシュしたらバイナリ(実行ファイル?用語がわからない・・・)が使えなくなったので、解決方法のメモ。
バイナリを使わない場合には関係の無い話かもしれません。
何がおこったのか
- 一回目は成功するが、二回目以降に実行すると
sh: 1: webpack: not found
とエラーが発生
package.json
{
"scripts": {
"build": "webpack --optimize-minimize"
},
"dependencies": {
"webpack": "^3.10.0"
}
}
buildspec.yml
version: 0.2
phases:
install:
commands:
- npm install
build:
commands:
- npm run build
artifacts:
files:
- '**/*'
base-directory: dist
cache:
paths:
- 'node_modules/**/*'
error_log
[Container] 2018/02/02 06:58:40 Running command npm run build
> [email protected] build /codebuild/output/src015426277/src/github.com/XXX/XXX
> webpack --optimize-minimize
sh: 1: webpack: not found
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! [email protected] build: `webpack --optimize-minimize`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2018-02-02T06_58_41_015Z-debug.log
[Container] 2018/02/02 06:58:41 Command did not exit successfully npm run build exit status 1
原因
-
node_modules/.bin
にはsymlinkが配置されているが、相対パスではなく絶対パスに書き換わっていた
- 作業ディレクトリはビルドの度に変わる
- バイナリの宛先を見たところcacheされた時点の絶対パスになっていた
sh: 1: webpack: not found
とエラーが発生package.json
{
"scripts": {
"build": "webpack --optimize-minimize"
},
"dependencies": {
"webpack": "^3.10.0"
}
}
buildspec.yml
version: 0.2
phases:
install:
commands:
- npm install
build:
commands:
- npm run build
artifacts:
files:
- '**/*'
base-directory: dist
cache:
paths:
- 'node_modules/**/*'
error_log
[Container] 2018/02/02 06:58:40 Running command npm run build
> [email protected] build /codebuild/output/src015426277/src/github.com/XXX/XXX
> webpack --optimize-minimize
sh: 1: webpack: not found
npm ERR! file sh
npm ERR! code ELIFECYCLE
npm ERR! errno ENOENT
npm ERR! syscall spawn
npm ERR! [email protected] build: `webpack --optimize-minimize`
npm ERR! spawn ENOENT
npm ERR!
npm ERR! Failed at the [email protected] build script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
npm ERR! A complete log of this run can be found in:
npm ERR! /root/.npm/_logs/2018-02-02T06_58_41_015Z-debug.log
[Container] 2018/02/02 06:58:41 Command did not exit successfully npm run build exit status 1
-
node_modules/.bin
にはsymlinkが配置されているが、相対パスではなく絶対パスに書き換わっていた - 作業ディレクトリはビルドの度に変わる
- バイナリの宛先を見たところcacheされた時点の絶対パスになっていた
上記が原因でコケていた
解決策
-
node_modules
をtarでアーカイブしたところ無事解決
buildspec.yml
version: 0.2
phases:
install:
commands:
- if [ -e /tmp/node_modules.tar ]; then tar xf /tmp/node_modules.tar; fi
- npm install
build:
commands:
- npm run build
post_build:
commands:
- tar cf /tmp/node_modules.tar node_modules
artifacts:
files:
- '**/*'
base-directory: dist
cache:
paths:
- /tmp/node_modules.tar
最後に
node_modules
をtarでアーカイブしたところ無事解決buildspec.yml
version: 0.2
phases:
install:
commands:
- if [ -e /tmp/node_modules.tar ]; then tar xf /tmp/node_modules.tar; fi
- npm install
build:
commands:
- npm run build
post_build:
commands:
- tar cf /tmp/node_modules.tar node_modules
artifacts:
files:
- '**/*'
base-directory: dist
cache:
paths:
- /tmp/node_modules.tar
ハマって調べたけど類似する情報が見つからなかったので、備忘録として残しました!
お役に立てれば幸いです。
Author And Source
この問題について(AWS CodeBuildでnode_modulesをキャッシュしたらハマった), 我々は、より多くの情報をここで見つけました https://qiita.com/lohn/items/9c4c80d42af4050ed82f著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .