Skip to content

Commit

Permalink
Adding deployment configuration to Travis-CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ifireball committed Feb 5, 2015
1 parent 353b31a commit ab425bd
Showing 1 changed file with 19 additions and 6 deletions.
25 changes: 19 additions & 6 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,21 @@
language: python
python:
- "2.7"
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libfuse-dev cmake libc6-dev binutils
- "pip install -r requirements.txt"
script: paver mk_appimage
- '2.7'
install:
- sudo apt-get update -qq
- sudo apt-get install -qq libfuse-dev cmake libc6-dev binutils
- pip install -r requirements.txt
script:
- paver mk_appimage
before_deploy:
- git fetch --tags
deploy:
provider: releases
api_key:
secure: TrdL2oEziA8H/lxtER+4JtdvWFTzu3feSyExDBufcflMcz2S5ojxbPIufdIW0OFTG5Sp5TjY1ViuBZx666d5o3Gp1oqDWFXpfd4F0q4hsxdl2oY9mmef04Oc/Cnq+d0hArstqpBCEy7DcEUz/sd65nAyzhzCfGiVTYWaGFng8Ts=
skip_cleanup: true
file_glob: true
file: ./build/btsync-app-*
on:
tags: true
all_branches: true

0 comments on commit ab425bd

Please sign in to comment.