From be37dde5a0d8cbaaca66a1288eac1f03b25ef634 Mon Sep 17 00:00:00 2001 From: Tobias Trabelsi Date: Sat, 4 Jun 2022 17:19:50 +0200 Subject: [PATCH] added make to drone build --- .drone.yml | 2 ++ examples/.gitignore | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.drone.yml b/.drone.yml index a0e533a..a7eae4b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -17,6 +17,7 @@ steps: - name: build image: golang:1.18.3-alpine3.16 commands: + - "apk add --update --no-cache make" - "make build" when: event: @@ -25,6 +26,7 @@ steps: - name: test image: golang:1.18.3-alpine3.16 commands: + - "apk add --update --no-cache make" - "make test" when: event: diff --git a/examples/.gitignore b/examples/.gitignore index da6ebff..2674ee4 100644 --- a/examples/.gitignore +++ b/examples/.gitignore @@ -1,4 +1,5 @@ .terraform .terraform.lock.hcl terraform.tfstate -terraform.tfstate.backup \ No newline at end of file +terraform.tfstate.backup +*.tfvars \ No newline at end of file