-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feature] TravisCI now allows per component configuration + allows to…
… set a specific make command to run (#305) [feature] TravisCI now allows per component configuration + allows to set a specific make command to run### Summary - Mostly lifted from the Atlantis implementation ### Test Plan - unittest - run in existing repo
- Loading branch information
1 parent
81bef6d
commit eb7367a
Showing
13 changed files
with
332 additions
and
116 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 |
---|---|---|
|
@@ -9,7 +9,7 @@ import ( | |
"testing" | ||
|
||
"github.com/chanzuckerberg/fogg/config" | ||
"github.com/chanzuckerberg/fogg/config/v1" | ||
v1 "github.com/chanzuckerberg/fogg/config/v1" | ||
"github.com/chanzuckerberg/fogg/templates" | ||
"github.com/chanzuckerberg/fogg/util" | ||
"github.com/sirupsen/logrus" | ||
|
@@ -236,13 +236,15 @@ func TestApplySmokeTest(t *testing.T) { | |
"infra_s3_bucket": "buck", | ||
"project": "proj", | ||
"terraform_version": "0.100.0", | ||
"owner": "[email protected]" | ||
}, | ||
"travis_ci": { | ||
"enabled": true, | ||
"aws_iam_role_name": "travis", | ||
"id_account_name": "id", | ||
"test_buckets": 7 | ||
"owner": "[email protected]", | ||
"tools": { | ||
"travis_ci": { | ||
"enabled": true, | ||
"aws_iam_role_name": "travis", | ||
"id_account_name": "id", | ||
"test_buckets": 7 | ||
} | ||
} | ||
}, | ||
"accounts": { | ||
"foo": { | ||
|
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
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
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
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
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
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
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
Oops, something went wrong.