Skip to content

Commit

Permalink
Sets affinity repo
Browse files Browse the repository at this point in the history
  • Loading branch information
DimitrijeManic committed Sep 2, 2022
1 parent 436a36e commit 2fd7356
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
TEST?=$$(go list ./... | grep -v 'vendor')
HOSTNAME=github.com
NAMESPACE=nicolai86
NAMESPACE=affinity-org
NAME=aws-download
BINARY=terraform-provider-${NAME}
VERSION=0.0.5
VERSION=v0.0.1
OS_ARCH=darwin_amd64

default: install
Expand All @@ -18,9 +18,9 @@ install: build
mkdir -p ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}
mv ${BINARY} ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}

test:
go test -i $(TEST) || exit 1
echo $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4
test:
go test -i $(TEST) || exit 1
echo $(TEST) | xargs -t -n4 go test $(TESTARGS) -timeout=30s -parallel=4

testacc:
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m
testacc:
TF_ACC=1 go test $(TEST) -v $(TESTARGS) -timeout 120m

0 comments on commit 2fd7356

Please sign in to comment.