-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Switch dep manager from govendor to go modules (#20)
- CircleCi config is update to enable go mod support for go in ci env. - Go modules enables project to built outside go workspace. Hence, build/setEnv.sh that was used for creating fake workspace is removed. - Functionality to check if build scripts are invoked from project root directory is moved from build/setEnv.sh to build/ci.go - Build scripts (build/ci.go), Readme and .gitignore are updated. - Also, as a a result of migrating from govendor to go modules, - Vendor directory is no more required and hence removed. - go.mod and go.sum files are added to track dependencies. Resolves #9 Signed-off-by: Manoranjith <[email protected]>
- Loading branch information
1 parent
741765d
commit d3a917d
Showing
10 changed files
with
362 additions
and
1,028 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
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,8 +1 @@ | ||
#Ignore these files | ||
vendor/* | ||
build/workspace_ | ||
|
||
#But not these | ||
!vendor/vendor.json | ||
|
||
|
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.