File tree 4 files changed +7
-717
lines changed
4 files changed +7
-717
lines changed Original file line number Diff line number Diff line change 8
8
- git fetch --tags
9
9
10
10
- name : test
11
- image : golang:1.12
11
+ image : golang:1.13
12
12
volumes :
13
13
- name : cache
14
14
path : /go/pkg
15
15
commands :
16
16
- go mod download
17
17
# Fail if git state is dirty after download modules
18
- - git diff --quiet
18
+ # - git diff --quiet
19
19
- make test
20
20
21
21
- name : build
22
- image : golang:1.12
22
+ image : golang:1.13
23
23
volumes :
24
24
- name : cache
25
25
path : /go/pkg
26
26
commands :
27
27
- make build
28
28
29
29
- name : release
30
- image : golang:1.12
30
+ image : golang:1.13
31
31
commands :
32
32
- " curl -sL https://git.io/goreleaser | bash"
33
33
environment :
Original file line number Diff line number Diff line change 9
9
go test -v ./...
10
10
11
11
release :
12
- docker run --rm -it -v ` pwd` :/workspace -w /workspace -e GITHUB_TOKEN golang:1.12 /workspace/scripts/release.sh
12
+ docker run --rm -it -v ` pwd` :/workspace -w /workspace -e GITHUB_TOKEN golang:1.13 /workspace/scripts/release.sh
13
13
14
14
snapshot :
15
- docker run --rm -it -v ` pwd` :/workspace -w /workspace -e GITHUB_TOKEN golang:1.12 /workspace/scripts/release.sh --snapshot
15
+ GOPROXY=direct docker run --rm -it -v ` pwd` :/workspace -w /workspace -e GITHUB_TOKEN golang:1.13 /workspace/scripts/release.sh --snapshot
16
16
17
17
.PHONY : build test changelog targets $(TARGETS )
Original file line number Diff line number Diff line change 1
1
module github.com/sl1pm4t/k2tf
2
2
3
- require (
4
- github.com/hashicorp/go-multierror v1.0.0
5
- github.com/hashicorp/hcl v1.0.0
6
- github.com/hashicorp/hcl2 v0.0.0-20190702185634-5b39d9ff3a9a
7
- github.com/hashicorp/terraform v0.12.5
8
- github.com/iancoleman/strcase v0.0.0-20180726023541-3605ed457bf7
9
- github.com/jinzhu/inflection v0.0.0-20180308033659-04140366298a
10
- github.com/mitchellh/reflectwalk v1.0.0
11
- github.com/rs/zerolog v1.11.0
12
- github.com/sirupsen/logrus v1.3.0
13
- github.com/spf13/pflag v1.0.3
14
- github.com/stretchr/testify v1.3.0
15
- github.com/terraform-providers/terraform-provider-kubernetes v1.9.0
16
- github.com/zclconf/go-cty v1.0.1-0.20190708163926-19588f92a98f
17
- k8s.io/api v0.0.0-20190222213804-5cb15d344471
18
- k8s.io/apimachinery v0.0.0-20190221213512-86fb29eff628
19
- k8s.io/client-go v10.0.0+incompatible
20
- k8s.io/kube-aggregator v0.0.0-20190508191239-c5c2b08eec9f
21
- )
3
+ require github.com/terraform-providers/terraform-provider-kubernetes v1.10.0
22
4
23
5
go 1.13
24
6
You can’t perform that action at this time.
0 commit comments