mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-23 10:21:00 +00:00
parent
cf19b41ad4
commit
4e721c07cc
2 changed files with 2 additions and 3 deletions
3
BUILDING
3
BUILDING
|
@ -1,6 +1,5 @@
|
||||||
1. Install go 1.9 or later
|
1. Install go 1.9 or later
|
||||||
2. Execute `make deps` to download dependencies
|
2. Execute `make install` to compile project and install binaries to `GOPATH`
|
||||||
3. Execute `make install` to compile project and install binaries to `GOPATH`
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -17,7 +17,7 @@ DOCKER_RUN?=
|
||||||
_with-docker:
|
_with-docker:
|
||||||
$(eval DOCKER_RUN=docker run --rm -v $(shell pwd):/go/src/ -v $(shell pwd)/build:/build -w /go/src golang:$(DOCKER_RUN_GO_VERSION))
|
$(eval DOCKER_RUN=docker run --rm -v $(shell pwd):/go/src/ -v $(shell pwd)/build:/build -w /go/src golang:$(DOCKER_RUN_GO_VERSION))
|
||||||
|
|
||||||
all: deps build
|
all: build
|
||||||
|
|
||||||
vendor:
|
vendor:
|
||||||
go mod tidy
|
go mod tidy
|
||||||
|
|
Loading…
Reference in a new issue