aboutsummaryrefslogtreecommitdiffstats
path: root/.travis.yml
diff options
context:
space:
mode:
authorCarlos O'Ryan <coryan@google.com>2018-01-05 14:58:48 -0500
committerCarlos O'Ryan <coryan@google.com>2018-01-05 14:58:48 -0500
commit67d6e467285d7765d3df60093d23ba3b86838470 (patch)
tree9d6f4b72dfbc68d724a6883b544b52a2fefeafe2 /.travis.yml
parentadfdc65ca7ed813cfb72f290f9aa2f2a1ca5bc26 (diff)
downloadgoogletest-67d6e467285d7765d3df60093d23ba3b86838470.tar.gz
googletest-67d6e467285d7765d3df60093d23ba3b86838470.tar.bz2
googletest-67d6e467285d7765d3df60093d23ba3b86838470.zip
Use correct name for build event types.
Diffstat (limited to '.travis.yml')
-rw-r--r--.travis.yml8
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml
index 8142575c..180728a6 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -38,19 +38,19 @@ matrix:
- os: osx
compiler: gcc
env: BUILD_TYPE=Debug VERBOSE=1
- if: event != pull_request
+ if: type != pull_request
- os: osx
compiler: gcc
env: BUILD_TYPE=Release VERBOSE=1 CXX_FLAGS=-std=c++11
- if: event != pull_request
+ if: type != pull_request
- os: osx
compiler: clang
env: BUILD_TYPE=Debug VERBOSE=1
- if: event != pull_request
+ if: type != pull_request
- os: osx
compiler: clang
env: BUILD_TYPE=Release VERBOSE=1 CXX_FLAGS=-std=c++11
- if: event != pull_request
+ if: type != pull_request
# These are the install and build (script) phases for the most common entries in the matrix. They could be included
# in each entry in the matrix, but that is just repetitive.