Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding Arm 64-bit support for glide. #14

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion bin/build
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ build() {
git rev-parse --abbrev-ref HEAD
echo "Getting needed packages..."
go get -u $DEP_PKGS
gox -verbose -ldflags "-X main.version=${VERSION}" -os="linux" -arch="amd64 386" -output="dist/{{.OS}}-{{.Arch}}/glide" .
gox -verbose -ldflags "-X main.version=${VERSION}" -os="linux" -arch="amd64 386 arm64" -output="dist/{{.OS}}-{{.Arch}}/glide" .
cd -
}

Expand All @@ -47,10 +47,12 @@ copy() {
cd $dist/debian
mkdir -p i386
mkdir -p amd64
mkdir -p arm64
# This folder is used at $dist/debian/rules
mkdir -p release
cp $SRC/dist/linux-386/glide i386/
cp $SRC/dist/linux-amd64/glide amd64/
cp $SRC/dist/linux-arm64/glide arm64/
cd ..
dch -v "${PPA_VERSION}~$dist" -D "$dist" -u low "Release ${VERSION}~$dist"
rm -f glide_*
Expand Down
1 change: 1 addition & 0 deletions glide-ppa
Submodule glide-ppa added at 6d1844
2 changes: 1 addition & 1 deletion precise/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Vcs-Git: git://github.com:Masterminds/glide.git
Vcs-Browser: https://github.com/Masterminds/glide

Package: glide
Architecture: i386 amd64
Architecture: i386 amd64 arm64
Description: glide - Package Management for Golang
2 changes: 1 addition & 1 deletion trusty/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Vcs-Git: git://github.com:Masterminds/glide.git
Vcs-Browser: https://github.com/Masterminds/glide

Package: glide
Architecture: i386 amd64
Architecture: i386 amd64 arm64
Description: glide - Package Management for Golang
2 changes: 1 addition & 1 deletion xenial/debian/control
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ Vcs-Git: git://github.com:Masterminds/glide.git
Vcs-Browser: https://github.com/Masterminds/glide

Package: glide
Architecture: i386 amd64
Architecture: i386 amd64 arm64
Description: glide - Package Management for Golang