forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.travis.yml
37 lines (34 loc) · 921 Bytes
/
.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
language: go
go:
- 1.3
script: make test
branches:
except:
- gh-pages
before_deploy:
- PATH="$HOME/gopath/bin:$PATH" make dist
deploy:
provider: releases
api_key:
secure: eGxwIxqo4LlMVRxBzfygfj4lAqenhc28HTcHzD5neKfwWCC/PUpk0+bMcun52b3qrdk+IYF3+dQogoLRGsGZRwXYBboLdM6vuZoQP/FxwWwsIZcmaJNdfM6+Ab8jhfJGQlg7V+vxf1ZjJi/nMbipvoeiavzHXCPqUMVPd9T55fU=
file:
- dist/direnv.darwin-386
- dist/direnv.darwin-amd64
- dist/direnv.linux-386
- dist/direnv.linux-amd64
- dist/direnv.linux-arm
- dist/direnv.freebsd-386
- dist/direnv.freebsd-amd64
- dist/direnv.openbsd-386
- dist/direnv.openbsd-amd64
- dist/direnv.windows-386.exe
- dist/direnv.windows-amd64.exe
- dist/direnv.freebsd-arm
- dist/direnv.netbsd-386
- dist/direnv.netbsd-amd64
- dist/direnv.netbsd-arm
- dist/direnv.plan9-386
skip_cleanup: true
on:
tags: true
all_branches: true