Compare commits

..

No commits in common. "6581cf568a4689fa0bf21d668efc3a9b2025d88f" and "47146224a400dea712b4e0316587ab2add357596" have entirely different histories.

7 changed files with 14 additions and 10 deletions

View File

@ -11,11 +11,12 @@ prepare_build() {
# Create necessary directories if they don't exist # Create necessary directories if they don't exist
mkdir -p dist mkdir -p dist
mkdir -p build_logs mkdir -p build_logs
mkdir -p test_logs # Directory for test logs
# Initialize go modules if go.mod does not exist # Initialize go modules if go.mod does not exist
if [ ! -f go.mod ]; then if [ ! -f go.mod ]; then
echo "Initializing Go modules" echo "Initializing Go modules"
go mod init yourmodule # Replace 'yourmodule' with your actual module name or path go mod init ssh-timeout # Replace 'yourmodule' with your actual module name or path
fi fi
# Fetch and ensure all dependencies are up to date # Fetch and ensure all dependencies are up to date
@ -35,30 +36,33 @@ build_binary() {
output_name="dist/${output_name}" output_name="dist/${output_name}"
# Dynamic Linking echo "Building for ${os}/${arch} -> ${output_name}"
echo "Building dynamically linked for ${os}/${arch} -> ${output_name}"
GOOS=${os} GOARCH=${arch} go build -o ${output_name} main.go 2>build_logs/${os}_${arch}_build.log GOOS=${os} GOARCH=${arch} go build -o ${output_name} main.go 2>build_logs/${os}_${arch}_build.log
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "Successfully built ${output_name}" echo "Successfully built ${output_name}"
else else
echo "Failed to build ${output_name}. Check build_logs/${os}_${arch}_build.log for errors." echo "Failed to build ${output_name}. Check build_logs/${os}_${arch}_build.log for errors."
fi fi
}
# Static Linking # Test function
if [[ "$os" == "linux" ]]; then # Typically, static linking is most relevant for Linux environments run_tests() {
static_output_name="${output_name}_static" if ls *.go | grep '_test.go$' >/dev/null; then
echo "Building statically linked for ${os}/${arch} -> ${static_output_name}" echo "Running tests..."
CGO_ENABLED=0 GOOS=${os} GOARCH=${arch} go build -a -ldflags '-extldflags "-static"' -o ${static_output_name} main.go 2>build_logs/${os}_${arch}_static_build.log go test ./... > test_logs/test_output.log 2>&1
if [ $? -eq 0 ]; then if [ $? -eq 0 ]; then
echo "Successfully built ${static_output_name}" echo "Tests completed successfully."
else else
echo "Failed to build ${static_output_name}. Check build_logs/${os}_${arch}_static_build.log for errors." echo "Tests failed. Check test_logs/test_output.log for details."
fi fi
else
echo "No test files found, skipping tests."
fi fi
} }
# Main Build Process # Main Build Process
prepare_build prepare_build
run_tests # Run tests optionally before the build
for arch in "${ARCHITECTURES[@]}"; do for arch in "${ARCHITECTURES[@]}"; do
IFS='/' read -r -a parts <<< "$arch" # Split architecture string IFS='/' read -r -a parts <<< "$arch" # Split architecture string
os=${parts[0]} os=${parts[0]}

Binary file not shown.

Binary file not shown.

Binary file not shown.