forked from direnv/direnv
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.travis.yml
34 lines (32 loc) · 861 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
sudo: required
os:
- osx
- linux
language: nix
script: nix-shell --pure --run "make test"
# Deploy
before_deploy:
- nix shell --pure --run "make dist"
deploy:
provider: releases
api_key:
secure: aIw9Rt8yY8hQu+KFqgESP1v228sX709zTjWIA+mWW1NG5O6m99pjB8UDhar1SBtwZ8ovf/pYfvox4MFEzTsP3cJ9YKrK2HlodZZy46l7qaCpplhd+GIY7JOJlWgeUK5smgaVq60ITvTGoJtcLLX+TedkfaKfQsehIg6Sob4WhQ8=
file:
- dist/direnv.darwin-386
- dist/direnv.darwin-amd64
- dist/direnv.freebsd-386
- dist/direnv.freebsd-amd64
- dist/direnv.freebsd-arm
- dist/direnv.linux-386
- dist/direnv.linux-amd64
- dist/direnv.linux-arm
- dist/direnv.netbsd-386
- dist/direnv.netbsd-amd64
- dist/direnv.netbsd-arm
- dist/direnv.openbsd-386
- dist/direnv.openbsd-amd64
- dist/direnv.windows-386.exe
- dist/direnv.windows-amd64.exe
skip_cleanup: true
on:
tags: true