Skip to content

Commit

Permalink
Merge pull request sequelize#350 from exercism/armv8
Browse files Browse the repository at this point in the history
Add ARMv8 support for release script
  • Loading branch information
Tonkpils authored Oct 13, 2016
2 parents 7fd3c92 + b62118a commit 5c0c8b1
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions bin/build-all
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,10 @@ createRelease() {
then
osarch=arm-v$arm
ldflags="$ldflags -X $ARMVAR=$arm"
elif [ "$arch" = arm64 ]
then
osarch=arm-v8
ldflags="$ldflags -X $ARMVAR=8"
fi

binname=exercism
Expand Down Expand Up @@ -74,6 +78,7 @@ createRelease linux amd64
createRelease linux arm 5
createRelease linux arm 6
createRelease linux arm 7
createRelease linux arm64

# Windows Releases
createRelease windows 386
Expand Down

0 comments on commit 5c0c8b1

Please sign in to comment.