1
1
Fork 0
mirror of https://github.com/QB64Official/qb64.git synced 2024-07-03 07:41:21 +00:00
qb64/.travis.yml

37 lines
798 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:
2019-01-04 12:43:46 +00:00
include:
- os: osx
compiler: clang
- os: linux
compiler: gcc
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:
2019-01-04 12:43:46 +00:00
- '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_efd51ce9e893_key -iv $encrypted_efd51ce9e893_iv
2019-01-04 12:50:42 +00:00
-in .travis/travis-qb64.org_rsa.enc -out /tmp/travis-qb64.org_rsa -d
2016-11-09 04:23:02 +00:00
- eval "$(ssh-agent -s)"
2019-01-04 12:43:46 +00:00
- chmod 600 /tmp/travis-qb64.org_rsa
- ssh-add /tmp/travis-qb64.org_rsa
2016-11-09 04:23:02 +00:00
deploy:
provider: script
skip_cleanup: true
2019-01-04 12:43:46 +00:00
script: ".travis/deploy.sh"
2018-01-11 10:55:37 +00:00
on:
2019-01-04 12:43:46 +00:00
branch:
- development
- master
before_install: