From fb24cc99573c153f97a1951ee94bbbdda300b6be Mon Sep 17 00:00:00 2001 From: Leonardo de Moura Date: Sun, 18 Jun 2017 11:53:01 -0700 Subject: [PATCH] chore(.travis.yml.in): fix release upload @gebner Is this the change you meant in the slack channel? --- .travis.yml.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml.in b/.travis.yml.in index 7d2a5f19b5..63f9c9f744 100644 --- a/.travis.yml.in +++ b/.travis.yml.in @@ -93,7 +93,6 @@ matrix: CMAKE_BUILD_TYPE=Release TARGET=build/lean-@LEAN_VERSION_MAJOR@.@LEAN_VERSION_MINOR@.@LEAN_VERSION_PATCH@-darwin.zip UPLOAD=ON - PACKAGE=TRUE - os: osx env: @@ -124,7 +123,7 @@ script: ../src || exit - make -j2 || exit - if [[ $TEST != OFF ]]; then yes "A" | ctest -j2 --output-on-failure; fi - - if [[ $PACKAGE == TRUE ]]; then cpack; make package; fi + - if [[ $UPLOAD == ON ]]; then cpack; make package; fi - if [[ $TEST_LEANPKG_REGISTRY == ON ]]; then ../script/test_registry.py; fi - cd ..