1
1
Fork 0
mirror of https://github.com/QB64-Phoenix-Edition/QB64pe.git synced 2024-06-29 12:50:37 +00:00
QB64-PE/.travis.yml

40 lines
792 B
YAML
Raw Normal View History

2016-11-09 04:23:02 +00:00
language: cpp
install: true
script: ".travis/build.sh"
after_success: ".travis/push.sh"
2018-01-11 09:54:21 +00:00
matrix:
include:
- os: osx
compiler: clang
2018-01-11 10:14:15 +00:00
- os: linux
compiler: gcc
2018-01-11 09:54:21 +00:00
2016-11-09 04:23:02 +00:00
notifications:
irc:
channels: chat.freenode.net#qb64
skip_join: true
2018-01-11 09:07:18 +00:00
template:
- "Autobuild of branch %{branch}: %{message}"
2016-11-09 04:23:02 +00:00
addons:
ssh_known_hosts: qb64.org
apt:
packages:
- p7zip-full
before_deploy:
- openssl aes-256-cbc -K $encrypted_089141d01927_key -iv $encrypted_089141d01927_iv -in .travis/deploy_rsa.enc -out /tmp/deploy_rsa -d
- eval "$(ssh-agent -s)"
- chmod 600 /tmp/deploy_rsa
- ssh-add /tmp/deploy_rsa
deploy:
provider: script
skip_cleanup: true
script: .travis/deploy.sh
2018-01-11 10:55:37 +00:00
on:
branch:
- development
- master