5

私のジェンキンスはandで実行さCentOS 6れています。node.js 0.10.15bower 1.0.3

以下を実行するシェルタスクがあります。

npm install
bower install
grunt clean package

以下をビルドすると、bower のインストールが失敗します。

+ bower install

path.js:360
        throw new TypeError('Arguments to path.join must be strings');
              ^
TypeError: Arguments to path.join must be strings
    at path.js:360:15
    at Array.filter (native)
    at Object.exports.join (path.js:358:36)
    at Object.<anonymous> (/usr/lib/node_modules/bower/node_modules/
                           update-notifier/node_modules/configstore/configstore.js:9:7)
    at Module._compile (module.js:456:26)
    at Object.Module._extensions..js (module.js:474:10)
    at Module.load (module.js:356:32)
    at Function.Module._load (module.js:312:12)
    at Module.require (module.js:364:17)
    at require (module.js:380:17)

Build step 'Execute shell' marked build as failure

bower installJenkins ユーザーとしてログインしているときに端末で実行すると、機能します。上記の他のコマンドは期待どおりに機能します ( npmgrunt)。

何か案は?

4

1 に答える 1

4

あなたの実行環境は、環境変数として$XDG_CONFIG_HOMEも設定されていないようです。$HOME

たとえば、現在のワークスペースに手動で設定することで、これを回避できます。

export XDG_CONFIG_HOME="$WORKSPACE/.config"
...
bower install
于 2013-08-01T10:19:05.543 に答える