forked from hluk/CopyQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.travis.yml
55 lines (45 loc) · 1.05 KB
/
.travis.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
dist: trusty
sudo: required
language: cpp
matrix:
include:
- os: osx
compiler: clang
- os: linux
compiler: gcc
env:
- COMPILER=g++
- GCOV=gcov
- os: linux
compiler: clang
env:
- COMPILER=clang++
cache:
apt: true
ccache: true
directories:
- $HOME/.wheelhouse
# Don't omit tags (default is git --depth=50).
git:
depth: 9999999
before_install:
- utils/travis/before-install-${TRAVIS_OS_NAME}.sh
install:
- utils/travis/install-${TRAVIS_OS_NAME}.sh
script:
- utils/travis/script-${TRAVIS_OS_NAME}.sh
after_success:
- utils/travis/after_success-${TRAVIS_OS_NAME}.sh
deploy:
provider: releases
api_key:
secure: Vax27ifQsc8SlTsLYVbxVJANDAxDroegN6nOPXCN1MLaoh4W2DQ/iGGx+waIOSYig8Sh+AUz2JhCFuMLMVqwFoWY2rxNPBrxhTBjm3aDhylbB+mRECnbInNb0kS3qv4lNDN6lHD4B6K01FWUUiHX14s2JQx4ut+KuwMxxhxyO4Y=
file: 'build/*.dmg'
file_glob: true
skip_cleanup: true
overwrite: true
on:
condition: "$TRAVIS_OS_NAME = osx"
tags: true
all_branches: true
repo: hluk/CopyQ