Skip to content

Commit

Permalink
quay badge, add arm builds
Browse files Browse the repository at this point in the history
  • Loading branch information
lwolf committed Apr 8, 2018
1 parent bdf44df commit cbf0431
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 13 deletions.
39 changes: 26 additions & 13 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ builds:
- binary: kubereplay-controller
main: ./cmd/controller-manager/main.go
goos:
# - darwin
- darwin
- linux
goarch:
- amd64
# - arm
# - arm64
# goarm:
# - 6
# - 7
- arm
- arm64
goarm:
- 6
- 7
ignore:
- goos: darwin
goarch: arm
Expand All @@ -29,15 +29,15 @@ builds:
- binary: kubereplay-initializer
main: ./cmd/initializer-controller/main.go
goos:
# - darwin
- darwin
- linux
goarch:
- amd64
# - arm
# - arm64
# goarm:
# - 6
# - 7
- arm
- arm64
goarm:
- 6
- 7
ignore:
- goos: darwin
goarch: arm
Expand All @@ -48,7 +48,6 @@ release:
owner: lwolf
name: kubereplay
prerelease: true
draft: true

dockers:
- image: quay.io/lwolf/kubereplay-controller-amd64
Expand All @@ -65,6 +64,20 @@ dockers:
goarch: amd64
tag_templates:
- "{{ .Tag }}"
- image: quay.io/lwolf/kubereplay-controller-arm64
dockerfile: Dockerfile.controller
binary: kubereplay-controller
goos: linux
goarch: arm64
tag_templates:
- "{{ .Tag }}"
- image: quay.io/lwolf/kubereplay-initializer-arm64
dockerfile: Dockerfile.initializer
binary: kubereplay-initializer
goos: linux
goarch: arm64
tag_templates:
- "{{ .Tag }}"

git:
short_hash: true
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
[![Build Status](https://travis-ci.org/lwolf/kubereplay.svg?branch=master)](https://travis-ci.org/lwolf/kubereplay)
[![Docker Repository on Quay](https://quay.io/repository/lwolf/kubereplay-controller-amd64/status "Docker Repository on Quay")](https://quay.io/repository/lwolf/kubereplay-controller-amd64)

# kubereplay

Expand Down

0 comments on commit cbf0431

Please sign in to comment.