gpt4 book ai didi

c - Travis CI如何添加C库?

转载 作者:行者123 更新时间:2023-11-30 19:28:19 24 4
gpt4 key购买 nike

我正在开发一个C库,该库已上传到github。我写了这个.travis.yml文件:

language: c
compiler: gcc
script: make


我无法使用命令 make test,因为我的测试文件使用名为 checkC unit test library,需要安装。如何在Travis上安装此库?还有一个ubuntu软件包 here,但是它是旧版本

最佳答案

您可以手动安装:

  script:
- mkdir check; cd check
- git clone https://github.com/libcheck/check
- autoreconf --install
- ./configure
- make
- make check
- make install
- sudo ldconfig


然后:

- cd your project
- make

关于c - Travis CI如何添加C库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54171527/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com