diff --git a/.drone.yml b/.drone.yml index d4ce3a5..8571bb7 100644 --- a/.drone.yml +++ b/.drone.yml @@ -15,7 +15,6 @@ pipeline: GOPATH: /srv/app commands: - make ssh-server - - make dep_install - make vet - make lint # - make test diff --git a/Makefile b/Makefile index 0fbf29d..294fdf2 100644 --- a/Makefile +++ b/Makefile @@ -57,12 +57,6 @@ test: html: go tool cover -html=coverage.txt -dep_install: - glide install - -dep_update: - glide up - install: $(SOURCES) go install -v -tags '$(TAGS)' -ldflags '$(EXTLDFLAGS)-s -w $(LDFLAGS)'