-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
41 lines (39 loc) · 1005 Bytes
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
branches:
only:
- dev
language: cpp
matrix:
include:
- os: linux
dist: bionic
install:
- ./installers/install_bazel.sh
script:
- bazel test //:protobuf_bytes_unittest
- bazel run //examples:pointcloud
after_failure:
- find bazel-out/ -name "test.log" | xargs cat
- os: osx
osx_image: xcode10.2
compiler: clang
install:
- ./installers/install_bazel.sh
script:
- bazel test //:protobuf_bytes_unittest
- bazel run //examples:pointcloud
after_failure:
- find bazel-out/ -name "test.log" | xargs cat
- os: windows
env:
- USE_CLANG_CL=1
install:
- choco install bazel --version 1.2.0
script:
- bazel test ///:protobuf_bytes_unittest
- bazel run ///examples:pointcloud
after_failure:
- find bazel-out/ -name "test.log" | xargs cat
notifications:
email:
on_success: always
on_failure: always