diff options
author | Carlos O'Ryan <coryan@google.com> | 2018-01-05 14:58:48 -0500 |
---|---|---|
committer | Carlos O'Ryan <coryan@google.com> | 2018-01-05 14:58:48 -0500 |
commit | 67d6e467285d7765d3df60093d23ba3b86838470 (patch) | |
tree | 9d6f4b72dfbc68d724a6883b544b52a2fefeafe2 | |
parent | adfdc65ca7ed813cfb72f290f9aa2f2a1ca5bc26 (diff) | |
download | googletest-67d6e467285d7765d3df60093d23ba3b86838470.tar.gz googletest-67d6e467285d7765d3df60093d23ba3b86838470.zip |
Use correct name for build event types.
-rw-r--r-- | .travis.yml | 8 |
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. |