-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PRODENG-2551 clean and fix local/release
- separate goreleaser/makefile processes for local/release build - different goreleaser files now for local/release - can now build/sign/release separately - remove make target for release, which is dangerous enough that it should never be run accidentally, and just runs a script - Jenkins podspec to separate build/sign/release - build-release now happens in a goreleaser container - sign-release now happens in the Mir digicert container Signed-off-by: James Nesbitt <[email protected]>
- Loading branch information
1 parent
ce7035c
commit 7ccc1f0
Showing
8 changed files
with
152 additions
and
84 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,7 +1,16 @@ | ||
# goreleaser build path | ||
dist/ | ||
|
||
# Mac & VSCode files | ||
.idea/ | ||
.DS_Store | ||
|
||
# any terraform state files that you may have created running tests | ||
# or terraform directly to test. | ||
.tfstate | ||
|
||
# the gh releaser, downloaded in release.sh | ||
github-release | ||
|
||
# go mod vendor folder | ||
vendor |
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,15 @@ | ||
# | ||
# GoRelease instructions for local builds | ||
# | ||
project_name: launchpad | ||
builds: | ||
- env: | ||
- CGO_ENABLED=0 | ||
mod_timestamp: '{{ .CommitTimestamp }}' | ||
flags: | ||
- -trimpath | ||
ldflags: | ||
- -X github.com/Mirantis/mcc/version.Environment=development | ||
- -X github.com/Mirantis/mcc/version.GitCommit={{ .FullCommit }} | ||
- -X github.com/Mirantis/mcc/version.Version={{ .Version }} | ||
binary: '{{ .ProjectName }}' |
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