mirror of
https://github.com/moparisthebest/curl
synced 2024-10-31 15:45:12 -04:00
e424a1b3e7
- Change the continuous integration script to use 'make test-full' instead of just 'make test' so that the diagnostic log output is printed to stdout when a test fails. - Change the continuous integration script to use './configure --enable-debug' instead of just './configure' so that the memory analyzer will work during testing. Prior to this change Travis used its default C test script: ./configure && make && make test
14 lines
166 B
YAML
14 lines
166 B
YAML
language: c
|
|
|
|
before_script:
|
|
- ./buildconf
|
|
|
|
script: ./configure --enable-debug && make && make test-full
|
|
|
|
compiler:
|
|
- clang
|
|
- gcc
|
|
|
|
notifications:
|
|
email: false
|