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.
This commit is contained in:
Matthieu Gautier 2018-06-12 16:57:31 +02:00
parent 69fce5923a
commit 8db9def67d
1 changed files with 2 additions and 1 deletions

View File

@ -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"