mirror of
https://github.com/featurebasedb/featurebase.git
synced 2026-09-07 09:05:55 +00:00
Merge pull request #565 from codysoyland/32-bit-build
Add 32-bit build to release process
This commit is contained in:
commit
a7fcace1e9
1 changed files with 2 additions and 1 deletions
3
Makefile
3
Makefile
|
|
@ -39,12 +39,13 @@ pilosa: vendor
|
|||
crossbuild: vendor
|
||||
mkdir -p build/pilosa-$(IDENTIFIER)
|
||||
make pilosa FLAGS="-o build/pilosa-$(IDENTIFIER)/pilosa"
|
||||
cp {LICENSE,README.md} build/pilosa-$(IDENTIFIER)
|
||||
cp LICENSE README.md build/pilosa-$(IDENTIFIER)
|
||||
tar -cvz -C build -f build/pilosa-$(IDENTIFIER).tar.gz pilosa-$(IDENTIFIER)/
|
||||
@echo "Created release build: build/pilosa-$(IDENTIFIER).tar.gz"
|
||||
|
||||
release:
|
||||
make crossbuild GOOS=linux GOARCH=amd64
|
||||
make crossbuild GOOS=linux GOARCH=386
|
||||
make crossbuild GOOS=darwin GOARCH=amd64
|
||||
|
||||
install: vendor
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue