Skip to content

Commit 44ee8bf

Browse files
committed
remove tfinstall binary builds
1 parent 0bced0e commit 44ee8bf

File tree

2 files changed

+2
-24
lines changed

2 files changed

+2
-24
lines changed

.circleci/config.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,12 @@ commands:
2626
go_unit_test:
2727
steps:
2828
- run:
29-
command: go test $(go list ./... | grep -v /tfexec/internal/e2etest | grep -v /tfinstall)
29+
command: go test $(go list ./... | grep -v /tfexec/internal/e2etest)
3030
go_e2e_test:
3131
steps:
3232
- run:
3333
no_output_timeout: 15m
3434
command: go test -timeout=15m -v ./tfexec/internal/e2etest
35-
- run:
36-
no_output_timeout: 15m
37-
command: go test -timeout=15m -v ./tfinstall/...
3835

3936
jobs:
4037
# combined due to slowness of Go install

.goreleaser.yml

Lines changed: 1 addition & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,4 @@
1-
project_name: tfinstall
2-
builds:
3-
- env:
4-
- CGO_ENABLED=0
5-
main: ./cmd/tfinstall/main.go
6-
mod_timestamp: '{{ .CommitTimestamp }}'
7-
id: "tfinstall"
8-
binary: tfinstall
9-
flags:
10-
- -trimpath
11-
ldflags:
12-
- '-s -w -X main.version={{.Version}} -X main.commit={{.Commit}}'
13-
goos:
14-
- linux
15-
- darwin
16-
- windows
17-
goarch:
18-
- amd64
19-
- arm
20-
- arm64
1+
project_name: terraform-exec
212
archives:
223
- files: []
234
format: zip

0 commit comments

Comments
 (0)