Skip to content

Commit

Permalink
Merge 20f713e into 01ad40a
Browse files Browse the repository at this point in the history
  • Loading branch information
edvakf committed Sep 2, 2015
2 parents 01ad40a + 20f713e commit e562ff2
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
language: go
go:
- 1.5
env:
- "PATH=/home/travis/gopath/bin:$PATH"
before_install:
- go get github.com/mitchellh/gox
- go get github.com/tcnksm/ghr
- go get github.com/axw/gocov/gocov
- go get github.com/mattn/goveralls
- go get golang.org/x/tools/cmd/cover
script:
- go test -v -covermode=count -coverprofile=coverage.out ./...
- goveralls -coverprofile=coverage.out -service travis-ci -repotoken $COVERALLS_TOKEN
after_success:
- gox -cgo -output "dist/{.OS}_{.Arch}_{.Dir}" -osarch "darwin/amd64 linux/amd64"
- ghr --username edvakf --token $GITHUB_TOKEN --replace --prerelease --debug pre-release dist/
1 change: 1 addition & 0 deletions gov7.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ package gov7
#include "v7/v7.c"
#cgo CFLAGS: -DV7_NO_FS -DV7_LARGE_AST
#cgo LDFLAGS: -lm
*/
import "C"
Expand Down

0 comments on commit e562ff2

Please sign in to comment.