-
Notifications
You must be signed in to change notification settings - Fork 14
/
.travis.yml
65 lines (53 loc) · 1.4 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
56
57
58
59
60
61
62
63
64
65
language: go
go: 1.11
go_import_path: github.com/rexray/dvdcli
addons:
apt:
packages:
- cpio
- debhelper
- dpkg-dev
- make
- perl
- rpm
- fakeroot
before_script:
- source install_build_deps.sh
script:
- make build-all test rpm-all deb-all deploy-prep
notifications:
- slack: $SLACK_BUILDS
before_deploy:
- ./.bintray-decapitate.sh
deploy:
- provider: bintray
file: .bintray-stupid-filtered.json
user: $BINTRAY_USER
key: $BINTRAY_KEY
skip_cleanup: true
on:
all_branches: true
condition: $TRAVIS_TAG =~ ^$ && ($TRAVIS_REPO_SLUG = 'rexray/dvdcli' || $IGNORE_REPO_SLUG_CONDITION = true) && ($TRAVIS_BRANCH = master || $IGNORE_BRANCH_CONDITION = true)
- provider: bintray
file: .bintray-staged-filtered.json
user: $BINTRAY_USER
key: $BINTRAY_KEY
skip_cleanup: true
on:
all_branches: true
condition: $TRAVIS_TAG =~ -rc[[:digit:]]+$ && ($TRAVIS_REPO_SLUG = 'rexray/dvdcli' || $IGNORE_REPO_SLUG_CONDITION = true)
- provider: bintray
file: .bintray-stable-filtered.json
user: $BINTRAY_USER
key: $BINTRAY_KEY
skip_cleanup: true
on:
all_branches: true
condition: $TRAVIS_TAG =~ ^v?[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]$ && ($TRAVIS_REPO_SLUG = 'rexray/dvdcli' || $IGNORE_REPO_SLUG_CONDITION = true)
cache:
apt: true
directories:
- $HOME/.opt
sudo: required
services:
- docker