-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path.travis.yml
More file actions
26 lines (26 loc) · 999 Bytes
/
.travis.yml
File metadata and controls
26 lines (26 loc) · 999 Bytes
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
language: go
install:
- wget http://download.nanomsg.org/nanomsg-0.4-beta.tar.gz
- tar -xzvf nanomsg-0.4-beta.tar.gz
- cd nanomsg-0.4-beta
- ./configure && make && sudo make install && cd .. && sudo ldconfig
- go get github.com/tools/godep
- go get code.google.com/p/go.tools/cmd/cover
- go get github.com/onsi/ginkgo/ginkgo
- go get github.com/onsi/gomega
- go install github.com/onsi/ginkgo/ginkgo
- go install github.com/onsi/gomega
- export PATH=$PATH:$HOME/gopath/bin
- $HOME/gopath/bin/godep restore
- $HOME/gopath/bin/godep go install github.com/CapillarySoftware/gomasticate
script: $HOME/gopath/bin/ginkgo -cover -r --race
deploy:
provider: releases
api_key:
secure: cAfvm2u93f2+NVWn0KOVgjQKl/ZiRO579l+2hm0BN3A+0ptgNuY2wxonhpfy5S5j9cVohm6XyaEdD+TYPQJXm1XVCb7PvPCHdgk833pgBZd79lKy+N/Uz2fd9V3Al3Y/57+eP4V263Z+8/YYDttrqB1NOQ7cX2xAV4Ql3tf2hY4=
file: $HOME/gopath/bin/gomasticate
skip_cleanup: true
on:
repo: CapillarySoftware/gomasticate
tags: true
all_branches: true