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 38e4044 commit 1d8d8eeCopy full SHA for 1d8d8ee
Makefile
@@ -2,6 +2,12 @@ GOFMT_FILES?=$$(find . -name '*.go' | grep -v vendor)
2
3
default: fmt build
4
build: ;go build -o terraform-provider-oci
5
+
6
+### buildall will build both the src & test code. Go doesn't build the tests by default. Running a fake
7
+### test will compile the test code w/o running any tests (because it won't find it).
8
+buildall: build
9
+ go test ./provider -run FAKE_BUILD_TEST
10
11
clean: ;@rm -rf terraform-provider-oci rm -rf bin/* rm bin
12
fmt: ;goimports -w -local github.com/oracle/terraform-provider-oci $(GOFMT_FILES)
13
0 commit comments