forked from rexray/rexray
-
Notifications
You must be signed in to change notification settings - Fork 1
/
.travis.yml
60 lines (50 loc) · 1.32 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
go_import_path: github.com/emccode/rexray
language: go
go:
- 1.6
addons:
apt:
packages:
- rpm
before_script:
- make deps
script:
- make build-libstorage
- env GOOS=linux GOARCH=amd64 make build
- env GOOS=darwin GOARCH=amd64 make build
- make cover
after_success:
- make tgz
- make rpm
- make deb
- make bintray
- ls -al
deploy:
- provider: bintray
file: bintray-unstable.json
user: $BINTRAY_USER
key: $BINTRAY_KEY
skip_cleanup: true
on:
all_branches: true
condition: $TRAVIS_TAG =~ ^$ && ($TRAVIS_REPO_SLUG = 'emccode/rexray' || $IGNORE_REPO_SLUG_CONDITION = true) && ($TRAVIS_BRANCH = master || $IGNORE_BRANCH_CONDITION = true)
- provider: bintray
file: bintray-staged.json
user: $BINTRAY_USER
key: $BINTRAY_KEY
skip_cleanup: true
on:
all_branches: true
condition: $TRAVIS_TAG =~ -rc[[:digit:]]+$ && ($TRAVIS_REPO_SLUG = 'emccode/rexray' || $IGNORE_REPO_SLUG_CONDITION = true)
- provider: bintray
file: bintray-stable.json
user: $BINTRAY_USER
key: $BINTRAY_KEY
skip_cleanup: true
on:
all_branches: true
condition: $TRAVIS_TAG =~ ^v?[[:digit:]]+\.[[:digit:]]+\.[[:digit:]]$ && ($TRAVIS_REPO_SLUG = 'emccode/rexray' || $IGNORE_REPO_SLUG_CONDITION = true)
cache:
apt: true
directories:
- $HOME/.opt