We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 96d3a36 + 0205c12 commit 3ca40f7Copy full SHA for 3ca40f7
.circleci/config.yml
@@ -13,6 +13,10 @@ jobs:
13
- run: make lint
14
- run: make cover
15
- run: make build
16
+ - run: make build/arm64
17
- store_artifacts:
18
path: /go/src/github.com/bitnami/ini-file/out/ini-file
19
destination: ini-file
20
+ - store_artifacts:
21
+ path: /go/src/github.com/bitnami/ini-file/out/arm64/ini-file
22
+ destination: ini-file-arm64
Makefile
@@ -18,6 +18,9 @@ all:
build:
@go build -ldflags="-s -w" -o $(TOOL_PATH)
+build/arm64:
+ @GOARCH=arm64 go build -ldflags="-s -w" -o $(BUILD_DIR)/arm64/$(TOOL_NAME)
23
+
24
clean:
25
@rm -rf $(BUILD_DIR)
26
0 commit comments