From 9e1398c68acaae31e63656781e5a4083821e2179 Mon Sep 17 00:00:00 2001 From: Daniel Patterson Date: Thu, 24 Aug 2017 17:11:03 -0700 Subject: [PATCH] Enable OSX binary publishing for both NodeJS 4 and NodeJS 6 --- .travis.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index bc054d07c..509e44eab 100644 --- a/.travis.yml +++ b/.travis.yml @@ -144,7 +144,15 @@ matrix: osx_image: xcode8.2 compiler: "mason-osx-release" # we use the xcode provides clang and don't install our own - env: ENABLE_MASON=ON BUILD_TYPE='Release' CUCUMBER_TIMEOUT=60000 CCOMPILER='clang' CXXCOMPILER='clang++' ENABLE_ASSERTIONS=ON ENABLE_LTO=ON + env: ENABLE_MASON=ON BUILD_TYPE='Release' CUCUMBER_TIMEOUT=60000 CCOMPILER='clang' CXXCOMPILER='clang++' ENABLE_ASSERTIONS=ON ENABLE_LTO=ON NODE="4" + after_success: + - ./scripts/travis/publish.sh + + - os: osx + osx_image: xcode8.2 + compiler: "mason-osx-release" + # we use the xcode provides clang and don't install our own + env: ENABLE_MASON=ON BUILD_TYPE='Release' CUCUMBER_TIMEOUT=60000 CCOMPILER='clang' CXXCOMPILER='clang++' ENABLE_ASSERTIONS=ON ENABLE_LTO=ON NODE="6" after_success: - ./scripts/travis/publish.sh