blob: e144d94d5e7ff5ffb9b1bf2cb5122d7f4f6b5107 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
language: none
build:
pre_ci_boot:
image_name: debian
image_tag: stretch
pull: true
ci:
- apt-get install -qq build-essential
- ./prepare-release travis-ci
- mkdir build
- ( cd build && cmake -DWITH_CURL=OFF .. )
- make -C build -j 4
- CTEST_OUTPUT_ON_FAILURE=1 make -C build test
- ./test/integration/run-tests -q
|