Skip to content

Commit a65a4a2

Browse files
author
jasonwalsh
committed
ci: install Terraform in build job
1 parent 3f21d61 commit a65a4a2

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.circleci/config.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,16 @@
11
jobs:
22
build:
3-
docker:
4-
- image: circleci/golang:1.13.4
3+
executor: default
54
steps:
65
- checkout
76
- go/load-cache
87
- go/mod-download
98
- go/save-cache
9+
- run:
10+
command: |
11+
wget --quiet https://releases.hashicorp.com/terraform/0.11.14/terraform_0.11.14_linux_amd64.zip
12+
sudo unzip -D /usr/local/bin terraform_0.11.14_linux_amd64.zip
13+
name: Install Terraform
1014
- go/test
1115
release:
1216
docker:

0 commit comments

Comments
 (0)