Skip to content

Commit

Permalink
Added arm64 support
Browse files Browse the repository at this point in the history
- Added `arm.v8` to seihon for 64bit docker builds
- Added `arm64` to goreleaser config for GitHub release builds
  • Loading branch information
DerAndereAndi committed Jul 17, 2020
1 parent 6fc3f0e commit 957aaea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .goreleaser.yml
Expand Up @@ -18,6 +18,7 @@ builds:
goarch:
- amd64
- arm
- arm64
goarm:
- "6"
archives:
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Expand Up @@ -33,11 +33,11 @@ build:

publish-images:
@echo Version: $(VERSION) $(BUILD_DATE)
seihon publish -v "$(TAG_NAME)" -v "latest" --image-name andig/evcc --base-runtime-image alpine --dry-run=false --targets=arm.v6,amd64
seihon publish -v "$(TAG_NAME)" -v "latest" --image-name andig/evcc --base-runtime-image alpine --dry-run=false --targets=arm.v6,arm.v8,amd64

publish-latest:
@echo Version: $(VERSION) $(BUILD_DATE)
seihon publish -v "latest" --image-name andig/evcc --base-runtime-image alpine --dry-run=false --targets=arm.v6,amd64
seihon publish -v "latest" --image-name andig/evcc --base-runtime-image alpine --dry-run=false --targets=arm.v6,arm.v8,amd64

test-release:
goreleaser --snapshot --skip-publish --rm-dist
Expand Down

0 comments on commit 957aaea

Please sign in to comment.