mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
56 lines
No EOL
1.7 KiB
Makefile
56 lines
No EOL
1.7 KiB
Makefile
GO_VERSION=1.16
|
|
GOFILES_NOVENDOR = $(shell find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./.git/*")
|
|
|
|
DOCKER_RUN?=
|
|
_with-docker:
|
|
$(eval DOCKER_RUN=docker run --rm -v $(shell pwd):/go/src/ -v $(shell pwd)/build:/build -w /go/src golang:$(GO_VERSION))
|
|
|
|
all: deps build
|
|
|
|
deps:
|
|
go get -u golang.org/x/net/context
|
|
go get -u golang.org/x/net/context/ctxhttp
|
|
go get -u github.com/golang/protobuf/proto
|
|
go get -u github.com/golang/protobuf/protoc-gen-go
|
|
go get -d docker.io/go-docker
|
|
go get -d github.com/jackspirou/syscerts
|
|
|
|
formatcheck:
|
|
([ -z "$(shell gofmt -d $(GOFILES_NOVENDOR))" ]) || (echo "Source is unformatted"; exit 1)
|
|
|
|
format:
|
|
@gofmt -w ${GOFILES_NOVENDOR}
|
|
|
|
test-agent:
|
|
$(DOCKER_RUN) go test -race -timeout 30s github.com/laszlocph/woodpecker/cmd/drone-agent $(go list ./... | grep -v /vendor/)
|
|
|
|
test-server:
|
|
$(DOCKER_RUN) go test -race -timeout 30s github.com/laszlocph/woodpecker/cmd/drone-server
|
|
|
|
test-frontend:
|
|
(cd web/; yarn run test)
|
|
|
|
test-lib:
|
|
go get github.com/laszlocph/woodpecker/cncd/pipeline/pipec
|
|
go get github.com/laszlocph/woodpecker/remote/mock
|
|
go get github.com/laszlocph/woodpecker/cli/drone/internal
|
|
go get -t github.com/laszlocph/woodpecker/cncd/pipeline/pipeline/frontend/yaml
|
|
$(DOCKER_RUN) go test -race -timeout 30s $(shell go list ./... | grep -v '/cmd/')
|
|
|
|
test: test-lib test-agent test-server
|
|
|
|
build-agent:
|
|
$(DOCKER_RUN) go build -o build/drone-agent github.com/laszlocph/woodpecker/cmd/drone-agent
|
|
|
|
build-server:
|
|
$(DOCKER_RUN) go build -o build/drone-server github.com/laszlocph/woodpecker/cmd/drone-server
|
|
|
|
build-frontend:
|
|
(cd web/; yarn run build)
|
|
|
|
|
|
build: build-agent build-server
|
|
|
|
install:
|
|
go install github.com/laszlocph/woodpecker/cmd/drone-agent
|
|
go install github.com/laszlocph/woodpecker/cmd/drone-server
|