This repository has been archived by the owner on Jan 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed the vendor directory and initiated as a module updated tfjson_test Updated circle ci config Added env variable to turn on modules added env variable to test run and added names to runs updated env variable installed terraform downloading dependencies before building terraform
- Loading branch information
Andrew Partis
committed
Apr 15, 2019
1 parent
5712341
commit fae302c
Showing
1,091 changed files
with
343,848 additions
and
16,487 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
go: palantir/go@0.0.11 | ||
|
||
jobs: | ||
verify: | ||
parameters: | ||
executor: | ||
description: | | ||
The executor used for this job. | ||
type: executor | ||
usevendor: | ||
description: | | ||
Use the vendor directory for older versions of go | ||
type: boolean | ||
default: true | ||
executor: << parameters.executor >> | ||
steps: | ||
- go/setup: | ||
restore-mod-cache: false | ||
- unless: | ||
condition: << parameters.usevendor >> | ||
steps: | ||
- run: go get -v ./... | ||
- run: go version | ||
- run: go build . | ||
|
||
workflows: | ||
version: 2 | ||
verify: | ||
jobs: | ||
- verify: | ||
name: verify-go-1.12 | ||
executor: | ||
name: go/golang | ||
owner-repo: palantir/tfjson | ||
version: 1.12.2 | ||
module: true | ||
- verify: | ||
name: verify-go-1.11 | ||
executor: | ||
name: go/golang | ||
owner-repo: palantir/tfjson | ||
version: 1.11.8 | ||
module: true | ||
- verify: | ||
name: verify-go-1.10 | ||
executor: | ||
name: go/golang | ||
owner-repo: palantir/tfjson | ||
version: 1.10.8 | ||
module: false | ||
usevendor: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,3 @@ | ||
*.iml | ||
*.ipr | ||
.terraform/ |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module github.com/palantir/tfjson | ||
|
||
go 1.12 | ||
|
||
require github.com/hashicorp/terraform v0.11.13 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.