aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorJake Champlin <jake.champlin.27@gmail.com>2017-06-06 16:29:54 -0400
committerJake Champlin <jake.champlin.27@gmail.com>2017-06-06 16:29:54 -0400
commit5f34059ad1bf9fb9e0bfd9f1b317917ecccf36f7 (patch)
treec3ec61357f0f069c1dcc580d64b3e8157a5bcc72
parentbae9f6d2fd5eb5bc80929bd393932b23f14d7c93 (diff)
downloadterraform-provider-statuscake-5f34059ad1bf9fb9e0bfd9f1b317917ecccf36f7.tar.gz
terraform-provider-statuscake-5f34059ad1bf9fb9e0bfd9f1b317917ecccf36f7.tar.zst
terraform-provider-statuscake-5f34059ad1bf9fb9e0bfd9f1b317917ecccf36f7.zip
Updating Makefile + Add gitignore
-rw-r--r--.gitignore31
-rw-r--r--GNUmakefile2
2 files changed, 32 insertions, 1 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..5982d2c
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,31 @@
1*.dll
2*.exe
3.DS_Store
4example.tf
5terraform.tfplan
6terraform.tfstate
7bin/
8modules-dev/
9/pkg/
10website/.vagrant
11website/.bundle
12website/build
13website/node_modules
14.vagrant/
15*.backup
16./*.tfstate
17.terraform/
18*.log
19*.bak
20*~
21.*.swp
22.idea
23*.iml
24*.test
25*.iml
26
27website/vendor
28
29# Test exclusions
30!command/test-fixtures/**/*.tfstate
31!command/test-fixtures/**/.terraform/
diff --git a/GNUmakefile b/GNUmakefile
index 151c78c..6234687 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -7,7 +7,7 @@ default: build
7build: fmtcheck 7build: fmtcheck
8 go install 8 go install
9 9
10test: fmtcheck errcheck 10test: fmtcheck
11 go test -i $(TEST) || exit 1 11 go test -i $(TEST) || exit 1
12 echo $(TEST) | \ 12 echo $(TEST) | \
13 xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4 13 xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4