This repository has been archived by the owner on Jan 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add GitHub releases to Travis CI config for issue #13
- Loading branch information
robo9k
committed
Jun 8, 2014
1 parent
3a46057
commit 0b8335f
Showing
1 changed file
with
21 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,30 @@ | ||
language: c | ||
|
||
compiler: | ||
- gcc | ||
- clang | ||
|
||
before_install: | ||
- sudo pip install cpp-coveralls | ||
|
||
install: | ||
- "sudo apt-get update -qq" | ||
- "sudo apt-get install -qq python3 python3-dev" | ||
- "sudo apt-get install -qq check" | ||
script: "autoreconf --install && ./configure --enable-gcov PYTHON_VERSION=3.2 && make && make check" | ||
- sudo apt-get update -qq | ||
- sudo apt-get install -qq python3 python3-dev | ||
- sudo apt-get install -qq check | ||
|
||
script: autoreconf --install && ./configure --enable-gcov PYTHON_VERSION=3.2 && make && make check | ||
|
||
after_success: | ||
- coveralls --exclude tests --extension c | ||
|
||
before_deploy: make dist | ||
|
||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: Q/LypIhTkXiPp+NFtlDaKqc6tMUy7YnGs5sV24UEgI/8B/SUojexqGczdvEwpFep2DuXcJQ6bsbBkNYS5KBWSg67gsP5J/LkbjytMM/FWdFTV/zhlmUK+mMnKVHhlaC78JIg6vRxuKPMVYlcM2zcGcnRPQS8X3t+FdDkvw54zDM= | ||
file: q3py-*.tar.gz | ||
on: | ||
repo: robo9k/q3py | ||
branch: master | ||
tags: true |