mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
24 lines
691 B
Bash
Executable File
24 lines
691 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This assumes that gonative and gox is installed as per the 'one time setup' instructions
|
|
# at https://github.com/inconshreveable/gonative
|
|
|
|
|
|
CGO_ENABLED=0 gox -ldflags "${LDFLAGS}" -output="build/yq_{{.OS}}_{{.Arch}}"
|
|
# include non-default linux builds too
|
|
CGO_ENABLED=0 gox -ldflags "${LDFLAGS}" -os=linux -output="build/yq_{{.OS}}_{{.Arch}}"
|
|
|
|
cd build
|
|
rhash -r -a . -P -o checksums
|
|
|
|
rhash --list-hashes > checksums_hashes_order
|
|
|
|
find . | xargs -I {} tar czvf {}.tar.gz {}
|
|
|
|
rm checksums_hashes_order.tar.gz
|
|
rm checksums.tar.gz
|
|
rm yq_windows_386.exe.tar.gz
|
|
rm yq_windows_amd64.exe.tar.gz
|
|
|
|
zip yq_windows_386.zip yq_windows_386.exe
|
|
zip yq_windows_amd64.zip yq_windows_amd64.exe |