ci: Remove Dockerfile, golint, update travisci to use tip
authorAndrey Petrov <andrey.petrov@shazow.net>
Sun, 17 Jul 2016 22:11:00 +0000 (18:11 -0400)
committerAndrey Petrov <andrey.petrov@shazow.net>
Sun, 17 Jul 2016 22:11:00 +0000 (18:11 -0400)
.travis.yml
Dockerfile [deleted file]
Makefile

index 27f022d22e09e0743f18feb25148a226e33cda87..3b7c6b369d36b6580c97961da4c7ee35a829d890 100644 (file)
@@ -5,8 +5,6 @@ notifications:
 
 install:
   - export PATH=$PATH:$HOME/gopath/bin
-  - go get github.com/GeertJohan/fgt
-  - go get github.com/golang/lint/golint
   - make deps
 
 script:
@@ -14,4 +12,4 @@ script:
   - make test
 
 go:
-  - 1.4
+  - tip
diff --git a/Dockerfile b/Dockerfile
deleted file mode 100644 (file)
index 19253bc..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
-#
-# Usage example:
-# $ docker build -t ssh-chat .
-# $ docker run -d -p 0.0.0.0:(your host machine port):2022 --name ssh-chat ssh-chat
-#
-FROM golang:1.4
-MAINTAINER Alvin Lai <al@alvinlai.com>
-
-RUN apt-get update
-RUN apt-get install -y openssh-client
-
-RUN go get github.com/shazow/ssh-chat
-RUN ssh-keygen -f ~/.ssh/id_rsa -t rsa -N ''
-
-EXPOSE 2022
-
-CMD ["-i", "/root/.ssh/id_rsa", "-vv", "--bind", "\":2022\""]
-ENTRYPOINT ["ssh-chat"]
index 31b2384d269021dc08066e087d0f54d7084992c4..d9a13b3ee367b1f9fd6ba319806d7201832053b8 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -30,7 +30,6 @@ debug: $(BINARY) $(KEY)
 
 test:
        go test ./...
-       golint ./...
 
 release:
        GOOS=linux GOARCH=amd64 $(LDFLAGS) ./build_release "github.com/shazow/ssh-chat/cmd/ssh-chat" README.md LICENSE