-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build dmt tool for all supported platforms [HZ-2594] (#413)
- Loading branch information
1 parent
356be1b
commit bbe577b
Showing
2 changed files
with
8 additions
and
1 deletion.
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
BINARY_NAME=dmt MAIN_CMD_HELP='Hazelcast Data Migration Tool' make build-dmt | ||
BINARY_NAME=dmt MAIN_CMD_HELP='Hazelcast Data Migration Tool' make build-dmt | ||
|
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,6 @@ | ||
GOOS=linux GOARCH=amd64 BINARY_NAME=dmt_linux_amd64 MAIN_CMD_HELP='Hazelcast Data Migration Tool' make build-dmt | ||
GOOS=linux GOARCH=arm64 BINARY_NAME=dmt_linux_arm64 MAIN_CMD_HELP='Hazelcast Data Migration Tool' make build-dmt | ||
GOOS=darwin GOARCH=amd64 BINARY_NAME=dmt_darwin_amd64 MAIN_CMD_HELP='Hazelcast Data Migration Tool' make build-dmt | ||
GOOS=darwin GOARCH=arm64 BINARY_NAME=dmt_darwin_arm64 MAIN_CMD_HELP='Hazelcast Data Migration Tool' make build-dmt | ||
GOOS=windows GOARCH=amd64 BINARY_NAME=dmt_windows_amd64.exe MAIN_CMD_HELP='Hazelcast Data Migration Tool' make build-dmt | ||
|