1
0
mirror of https://github.com/woodpecker-ci/woodpecker.git synced 2026-06-03 16:35:37 +02:00
6543
2023-03-19 18:32:19 +01:00
committed by GitHub
parent e74c256571
commit 56e6639396
16 changed files with 35 additions and 26 deletions
+4
View File
@@ -91,6 +91,10 @@ clean: ## Clean build artifacts
rm -rf build
@[ "1" != "$(shell docker image ls woodpecker/make:local -a | wc -l)" ] && docker image rm woodpecker/make:local || echo no docker image to clean
.PHONY: generate
generate: ## Run all code generations
go generate ./...
check-xgo: ## Check if xgo is installed
@hash xgo > /dev/null 2>&1; if [ $$? -ne 0 ]; then \
$(GO) install src.techknowlogick.com/xgo@latest; \