ente/cli/release.sh

41 lines
1.2 KiB
Bash
Raw Permalink Normal View History

2023-09-14 06:54:09 +00:00
#!/bin/bash
# Create a "bin" directory if it doesn't exist
mkdir -p bin
# List of target operating systems
OS_TARGETS=("windows" "linux" "darwin")
# Corresponding architectures for each OS
ARCH_TARGETS=("386 amd64" "386 amd64 arm arm64" "amd64 arm64")
export CGO_ENABLED=0
2023-09-14 06:54:09 +00:00
# Loop through each OS target
for index in "${!OS_TARGETS[@]}"
2023-09-14 06:54:09 +00:00
do
OS=${OS_TARGETS[$index]}
for ARCH in ${ARCH_TARGETS[$index]}
do
# Set the GOOS environment variable for the current target OS
export GOOS="$OS"
export GOARCH="$ARCH"
2023-09-14 06:54:09 +00:00
# Set the output binary name to "ente-cli" for the current OS and architecture
2023-10-25 11:52:22 +00:00
BINARY_NAME="ente-$OS-$ARCH"
2023-09-14 06:54:09 +00:00
# Add .exe extension for Windows
if [ "$OS" == "windows" ]; then
2023-10-25 11:52:22 +00:00
BINARY_NAME="ente-$OS-$ARCH.exe"
fi
2023-09-14 06:54:09 +00:00
# Build the binary and place it in the "bin" directory
go build -ldflags="-s -w" -trimpath -o "bin/$BINARY_NAME" main.go
2023-09-14 06:54:09 +00:00
# Print a message indicating the build is complete for the current OS and architecture
echo "Built for $OS ($ARCH) as bin/$BINARY_NAME"
done
2023-09-14 06:54:09 +00:00
done
# Print a message indicating the build process is complete
echo "Build process completed for all platforms and architectures. Binaries are in the 'bin' directory."