我发现单行language: c.travis.yml文件基本上可以满足我的所有需求,除了我不想make test发生这种情况.有没有办法让特拉维斯跑出去./configure && make?
language: c
make test
./configure && make
您是否尝试过覆盖默认测试脚本,如下所述:https://docs.travis-ci.com/user/languages/c#Default-Test-Script?
就像是:
script: ./configure && make