Skip to content

Commit

Permalink
Add Bazel example to CI script
Browse files Browse the repository at this point in the history
  • Loading branch information
PJK committed Oct 16, 2021
1 parent f7914d4 commit 72dc859
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,12 @@ script:
if grep -q 'Memory Leak\|IPW\|Uninitialized Memory Conditional\|Uninitialized Memory Read' memcheck.out; then
exit 1
fi;
- >
if [ "$TRAVIS_OS_NAME" = "linux" -a "$TRAVIS_ARCH" = "amd64" ]; then
pushd examples/bazel
bazel run -s src:hello
popd
fi;
after_success:
- if [ "$TRAVIS_OS_NAME" = "linux" -a "$CC" = "gcc" -a "$TRAVIS_ARCH" = "amd64" ]; then codecov; fi
Expand Down

0 comments on commit 72dc859

Please sign in to comment.