Skip to content

Commit

Permalink
Ensure can build ARM v5 or greater binaries (#591)
Browse files Browse the repository at this point in the history
Add ARM v5 (or greater) binary builder to ensure support maintained

Depends-On: #590
  • Loading branch information
denismakogon authored and seiflotfy committed Mar 21, 2017
1 parent 2980763 commit 9484dde
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ test:
test-datastore:
cd api/datastore && go test -v ./...

test-build-arm:
GOARCH=arm GOARM=5 $(MAKE) build
GOARCH=arm GOARM=6 $(MAKE) build
GOARCH=arm GOARM=7 $(MAKE) build
GOARCH=arm64 $(MAKE) build

run:
./functions

Expand Down
2 changes: 2 additions & 0 deletions circle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,8 @@ test:
pwd: $GO_PROJECT
- make test-datastore:
pwd: $GO_PROJECT
- make test-build-arm:
pwd: $GO_PROJECT
- go build:
pwd: $GO_PROJECT/examples/middleware
- go build:
Expand Down

0 comments on commit 9484dde

Please sign in to comment.