Merge pull request #181 from kiwix/no_travis_deploy

Do not deploy on native_dyn linux platform.
This commit is contained in:
Matthieu Gautier 2018-06-12 19:19:30 +02:00 committed by GitHub
commit 2f058d239b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -39,12 +39,13 @@ deploy:
script: travis/deploy.sh script: travis/deploy.sh
on: on:
tags: true tags: true
condition: $TRAVIS_OS_NAME = osx || $PLATFORM != native_dyn
- provider: script - provider: script
skip_cleanup: true skip_cleanup: true
script: travis/deploy.sh script: travis/deploy.sh
on: on:
branch: master branch: master
condition: $TRAVIS_EVENT_TYPE = cron condition: $TRAVIS_EVENT_TYPE = cron && ($TRAVIS_OS_NAME = osx || $PLATFORM != native_dyn)
env: env:
global: global:
- MATRIX_EVAL="CC=gcc-5 && CXX=g++-5" - MATRIX_EVAL="CC=gcc-5 && CXX=g++-5"