We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3720134 commit 9cca82fCopy full SHA for 9cca82f
GNUmakefile
@@ -48,6 +48,15 @@ test-compile:
48
fi
49
go test -c $(TEST) $(TESTARGS)
50
51
+release: fmtcheck
52
+ for kernel in linux windows darwin; do \
53
+ for dist in $$(go tool dist list | grep $$kernel); do \
54
+ GOOS=$$kernel; \
55
+ GOARCH=$$(echo $$dist | cut -d/ -f2); \
56
+ GOOS=$$GOOS GOARCH=$$GOARCH go build -o terraform-provider-sysdig-$$GOOS-$$GOARCH; \
57
+ done \
58
+ done
59
+
60
website:
61
ifeq (,$(wildcard $(GOPATH)/src/$(WEBSITE_REPO)))
62
echo "$(WEBSITE_REPO) not found in your GOPATH (necessary for layouts and assets), get-ting..."
0 commit comments