From 59cfdb3c9ebdc2909c72325d305423dfd8b75596 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Fri, 12 Feb 2016 12:45:31 +1300 Subject: [PATCH 1/3] Add modd and devd to "Projects using notify" --- README.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/README.md b/README.md index adbeb3f..a728d1d 100644 --- a/README.md +++ b/README.md @@ -16,3 +16,6 @@ Filesystem event notification library on steroids. (under active development) *Projects using notify* - [github.com/rjeczalik/cmd/notify](https://godoc.org/github.com/rjeczalik/cmd/notify) +- [github.com/cortesi/devd](https://github.com/cortesi/devd) +- [github.com/cortesi/modd](https://github.com/cortesi/modd) + From 1a2dc715deb6c5137da2dfd218e36f7726547ccf Mon Sep 17 00:00:00 2001 From: Nathan Youngman Date: Thu, 11 Feb 2016 18:54:50 -0700 Subject: [PATCH 2/3] Run Travis against Go 1.6 #90 kqueue works fine, so I didn't add it for now. --- .travis.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 45dd347..a95fcb4 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,8 @@ language: go go: - - 1.5.2 + - 1.5.3 + - 1.6rc2 os: - linux @@ -10,7 +11,7 @@ os: matrix: include: - os: osx - go: 1.5.2 + go: 1.5.3 env: - GOFLAGS="-tags kqueue" From 4d028fc6f69e898c121e15015d4a006d280816d3 Mon Sep 17 00:00:00 2001 From: Rafal Jeczalik Date: Thu, 3 Mar 2016 15:53:18 +0100 Subject: [PATCH 3/3] remove coveralls --- .travis.yml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.travis.yml b/.travis.yml index a95fcb4..4f1f5f2 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,8 +1,8 @@ language: go go: - - 1.5.3 - - 1.6rc2 + - 1.4.3 + - 1.6 os: - linux @@ -11,26 +11,20 @@ os: matrix: include: - os: osx - go: 1.5.3 + go: 1.6 env: - GOFLAGS="-tags kqueue" env: global: - - secure: JfdLa3hcnvIwT13kbH2fr4c+4V9H4yO4GZsqDckODmxILlEtKcCLM5eCi09D21uTuaMUfZDIFNPN4mpDhbeEoM6Aoro4Ht+mX0vlpFUOS5bRqhP0l59PKEXqKFfh2IIlqEOmQ9XU6XvqWezTirN1OFUPMIMO9qSM/HuKhbX5wJQ= - GOBIN=$HOME/bin - PATH=$HOME/bin:$PATH install: - - if [ "$(curl -LIsS -w %{http_code} coveralls.io | tail -1)" = "200" ] && [ "$TRAVIS_OS_NAME" = "linux" ]; then export COVERALLS=1; fi - go get golang.org/x/tools/cmd/vet - - if [ "$COVERALLS" = "1" ]; then go get golang.org/x/tools/cmd/cover github.com/mattn/goveralls github.com/modocache/gover; fi - go get -t -v ./... script: - go tool vet -all . - go install $GOFLAGS ./... - go test -v -race $GOFLAGS ./... - - if [ "$COVERALLS" = "1" ]; then go list -f '{{if len .TestGoFiles}}go test -coverprofile={{.Dir}}/.coverprofile {{.ImportPath}}{{end}}' ./... | xargs -i sh -c {}; fi - - if [ "$COVERALLS" = "1" ]; then gover; fi - - if [ "$COVERALLS" = "1" ]; then goveralls -coverprofile=gover.coverprofile -service=travis-ci -repotoken $COVERALLS_TOKEN; fi