Retoor software development Projects Research SearchXNG
Register Sign In

14 lines
306 B
YAML
Raw Normal View History

feat: add Travis CI config and fail-exit in test script Add .travis.yml with gcc and clang compilers running make && make test. Modify script/test.py to call sys.exit(1) when any tests fail, ensuring CI build correctly reports failure status.
2015-01-02 17:13:51 +01:00
language: c
compiler:
- gcc
- clang
chore: switch travis to container-based infra and move apt deps to addons block Replace manual apt-get install steps with declarative addons.apt.packages for gcc-multilib, and set sudo: false to enable container-based builds for faster CI execution.
2015-07-10 19:35:25 +02:00
# Travis VMs are 64-bit but we compile both for 32 and 64 bit. To enable the
# 32-bit builds to work, we need gcc-multilib.
addons:
apt:
packages:
- gcc-multilib
fix: install g++-multilib package for 32-bit C++ standard library support on Travis CI
2015-08-29 05:25:26 +02:00
- g++-multilib
chore: switch travis to container-based infra and move apt deps to addons block Replace manual apt-get install steps with declarative addons.apt.packages for gcc-multilib, and set sudo: false to enable container-based builds for faster CI execution.
2015-07-10 19:35:25 +02:00
sudo: false # Enable container-based builds.
script: make all && make test
Reference in New Issue Copy Permalink
e8d17172f4
wren/.travis.yml
Response time: 60ms
Mail Licenses API