.PHONY: all precommit setup lint test integration_test build run fix jenkins
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))
SERVICE = terraform-provider-datapipeline
include $(SELF_DIR)vendor/code.justin.tv/feeds/service-common/CommonMakefile.mk
all: setup lint test build


install:
	go install ./cmd/terraform-provider-datapipeline

testacc:
	env TF_ACC=true go test -v ./...

LOCAL_PACKAGES = "./cmd/..."

jenkins: test lint integration_test static_build
