We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a76a366 commit 17beaa5Copy full SHA for 17beaa5
.travis.yml
@@ -27,15 +27,15 @@ before_script:
27
script:
28
- conan install hello_world -pr clang-6.0-macos-x86_64
29
- source activate.sh
30
- - cmake hello_world
+ - cmake -DFOR_PRODUCTION=OFF hello_world
31
- cmake --build .
32
- - gtimeout 7 boot hello > hello_log.txt || true
+ - gtimeout 10 boot hello 2>&1 | tee hello.log || true
33
- |
34
- if grep -F "Running [ Hello world - OS included ]" hello_log.txt
+ if grep -F "Running [ Hello world - OS included ]" hello.log
35
then
36
echo "Hello World - Success! :)"
37
else
38
- echo "Failed :("
+ exit 1
39
fi
40
41
after_script:
0 commit comments