Skip to content

Commit

Permalink
chore: add Travis configuration.
Browse files Browse the repository at this point in the history
  • Loading branch information
ldez committed May 27, 2017
1 parent 6a183a5 commit a2c2617
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions .travis.yml
@@ -0,0 +1,41 @@
## Project specific config ###
language: generic

sudo: false

# os:
# - linux
# - osx

notifications:
email:
on_success: never
on_failure: change

git:
depth: 10

#branches:
# only:
# - master

services:
- docker

addons:
apt:
packages:
- git

script:
- chmod u+x build-package.sh
- ./build-package.sh

deploy:
- provider: releases
api_key: ${GITHUB_TOKEN}
file: builds/synergy-*-Linux-x86_64.*
skip_cleanup: true
file_glob: true
on:
tags: true

0 comments on commit a2c2617

Please sign in to comment.