-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: build darwin amd64/arm64 Docker images (#200)
* feat: buid darwing amd64/arm64 Docker images * Update go/darwin-arm64/Makefile * Update go/darwin/Makefile * fix: typo * feat: build multiarch Docker image * fix: use production Docker images * fix: typo * fix: copy changes to darwinw-arm64 * fix: remove arg
- Loading branch information
1 parent
4792481
commit 831fe5e
Showing
5 changed files
with
70 additions
and
27 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 |
---|---|---|
|
@@ -3,9 +3,11 @@ | |
*.o | ||
.idea | ||
.vagrant | ||
.vscode | ||
_obj | ||
Dockerfile | ||
.status.* | ||
*.bck | ||
CHANGELOG.md | ||
npcap/lib/*.exe | ||
|
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 +1,10 @@ | ||
include ../Makefile.common | ||
|
||
ifeq ($(DOCKER_MULTIARCH),1) | ||
DOCKER_CMD := $(SELF_DIR)/../.ci/scripts/buildx.sh | ||
|
||
push: | ||
@echo "Already done by buildx (.ci/scripts/buildx.sh)." | ||
atomic-push: | ||
@echo "Already done by buildx (.ci/scripts/buildx.sh)." | ||
endif |
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 +1,10 @@ | ||
include ../Makefile.common | ||
|
||
ifeq ($(DOCKER_MULTIARCH),1) | ||
DOCKER_CMD := $(SELF_DIR)/../.ci/scripts/buildx.sh | ||
|
||
push: | ||
@echo "Already done by buildx (.ci/scripts/buildx.sh)." | ||
atomic-push: | ||
@echo "Already done by buildx (.ci/scripts/buildx.sh)." | ||
endif |