我第一次玩 travis-ci,遇到了一个让我困惑的错误。
下面是我的 .travis.yml ,它在 linted 时进行验证。
language: node_js
node_js:
- 0.8
after_script:
- echo "Hello World"
以下是我的 travis 构建输出:
$ git clone --depth=50 --branch=master git://github.com/iancrowther/travis-experiment.git iancrowther/travis-experiment
Cloning into 'iancrowther/travis-experiment'...
remote: Counting objects: 27, done.
remote: Compressing objects: 100% (21/21), done.
remote: Total 27 (delta 2), reused 20 (delta 0)
Receiving objects: 100% (27/27), done.
Resolving deltas: 100% (2/2), done.
$ cd iancrowther/travis-experiment
git.2
$ git checkout -qf xxx
$ nvm use 0.8
Now using node v0.8.22
$ node --version
v0.8.22
$ npm --version
1.2.14
$ make test
make: *** No rule to make target `test'. Stop.
The command "make test" exited with 2.
after_script
$ echo "Hello World"
Hello World
Done. Your build exited with 1.
如何防止make文件被执行?
任何帮助都会很棒,我似乎无法找到文档中解释的错误
伊恩
附言。有没有人有任何关于样式代码指南的链接?
更新 @User 重新格式化问题时,他们添加了以下评论:“使用 {} 按钮使代码可见”。