6

尝试在 CentOS(64 位)系统上的工作流程中运行 phantomJS 时遇到一个奇怪的问题。

这是它报告的错误:

[4mRunning "qunit:all" (qunit) task[24m Testing http://localhost:8000/tests.html 

Running PhantomJS...[31mERROR[39m
[31m>> [39m/home/jenkins/jenkins/workspace/nick_node_te/web-client/client/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/lib/phantom/bin/phantomjs: /home/jenkins/jenkins/workspace/nick_node_te/web-client/client/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/lib/phantom/bin/phantomjs: cannot execute binary file 0 [ '/home/jenkins/jenkins/workspace/nick_node_te/web-client/client/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/lib/phantom/bin/phantomjs: /home/jenkins/jenkins/workspace/nick_node_te/web-client/client/node_modules/grunt-contrib-qunit/node_modules/grunt-lib-phantomjs/node_modules/phantomjs/lib/phantom/bin/phantomjs: cannot execute binary file' ]

[33mWarning: PhantomJS exited unexpectedly with exit code 126. Use --force to continue.[39m

[31mAborted due to warnings.[39m

我似乎找不到任何关于此类崩溃的好的文档。这通常和/或值得报告错误吗?

更新:

这些是我的文件的权限:

-rwxr-x--x. 1 root root 11308856 Sep 26 12:39 phantomjs
4

1 回答 1

12

听起来它不是为您尝试运行它的平台而构建的。将存储库克隆到新平台时,请确保删除node_modules目录并重新创建。npm install目前将node_nodules目录包含在源代码管理中是不好的做法。只需保持您的package.json文件维护良好,并为每个 repo 克隆做一个npm installor 。此外,如果您正在使用,请npm update添加node_modules/到您的文件中,这样您就不必担心在添加更改和提交时意外包含它。.gitignoregit

于 2013-09-27T12:56:52.993 回答