简体   繁体   中英

Don't run “make test” as a part of Travis CI?

I found that a single-line language: c .travis.yml file basically does all I need, with the exception that I don't want make test to happen. Is there a way I could make Travis just run ./configure && make ?

Have you tried overriding the default test script as described in: https://docs.travis-ci.com/user/languages/c#Default-Test-Script ?

Something like:

script:
  ./configure && make

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM