From 8db9def67d99a8649a9b3215dd9555173bb6ef07 Mon Sep 17 00:00:00 2001 From: Matthieu Gautier Date: Tue, 12 Jun 2018 16:57:31 +0200 Subject: [PATCH] Do not deploy on native_dyn linux platform. The deployement is already made in the Docker. "Classic" deploy will fail because there will be no archive to deploy. --- .travis.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 575b15d..32e5870 100644 --- a/.travis.yml +++ b/.travis.yml @@ -39,12 +39,13 @@ deploy: script: travis/deploy.sh on: tags: true + condition: $TRAVIS_OS_NAMEĀ = osx || $PLATFORM != native_dyn - provider: script skip_cleanup: true script: travis/deploy.sh on: branch: master - condition: $TRAVIS_EVENT_TYPE = cron + condition: $TRAVIS_EVENT_TYPE = cron && ($TRAVIS_OS_NAMEĀ = osx || $PLATFORM != native_dyn) env: global: - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"