1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-07-01 15:00:38 +00:00
QB64-PE/.travis.yml
2019-01-05 00:04:18 +11:00

37 lines
798 B
YAML

language: cpp
install: true
script: ".travis/build.sh"
after_success: ".travis/push.sh"
matrix:
include:
- os: osx
compiler: clang
- os: linux
compiler: gcc
notifications:
irc:
channels: chat.freenode.net#qb64
skip_join: true
template:
- 'Autobuild of branch %{branch}: %{message}'
addons:
ssh_known_hosts: qb64.org
apt:
packages:
- p7zip-full
before_deploy:
- openssl aes-256-cbc -K $encrypted_efd51ce9e893_key -iv $encrypted_efd51ce9e893_iv
-in .travis/travis-qb64.org_rsa.enc -out /tmp/travis-qb64.org_rsa -d
- eval "$(ssh-agent -s)"
- chmod 600 /tmp/travis-qb64.org_rsa
- ssh-add /tmp/travis-qb64.org_rsa
deploy:
provider: script
skip_cleanup: true
script: ".travis/deploy.sh"
on:
branch:
- development
- master
before_install: