Files
Cosmos-Server/build.sh
2025-02-16 17:42:18 +00:00

53 lines
1.3 KiB
Bash

#!/bin/bash
echo " ---- Build Cosmos ----"
rm -rf build
cp src/update.go src/launcher/update.go
env GOARCH=arm64 go build -o build/cosmos-arm64 src/*.go
if [ $? -ne 0 ]; then
exit 1
fi
env GOARCH=arm64 go build -o build/cosmos-launcher-arm64 ./src/launcher/launcher.go ./src/launcher/update.go
if [ $? -ne 0 ]; then
exit 1
fi
go build -o build/cosmos src/*.go
if [ $? -ne 0 ]; then
exit 1
fi
go build -o build/cosmos-launcher ./src/launcher/launcher.go ./src/launcher/update.go
if [ $? -ne 0 ]; then
exit 1
fi
echo " ---- Build complete, copy assets ----"
cp start.sh build/start.sh
cp restic-arm restic build/
chmod +x build/start.sh
chmod +x build/cosmos
chmod +x build/cosmos-arm64
chmod +x build/cosmos-launcher
chmod +x build/cosmos-launcher-arm64
chmod +x build/restic
chmod +x build/restic-arm
cp -r static build/
cp -r GeoLite2-Country.mmdb build/
cp nebula-arm-cert nebula-cert nebula-arm nebula build/
cp -r Logo.png build/
mkdir build/images
cp client/src/assets/images/icons/cosmos_gray.png build/cosmos_gray.png
cp client/src/assets/images/icons/cosmos_gray.png cosmos_gray.png
echo '{' > build/meta.json
cat package.json | grep -E '"version"' >> build/meta.json
echo ' "buildDate": "'`date`'",' >> build/meta.json
echo ' "built from": "'`hostname`'"' >> build/meta.json
echo '}' >> build/meta.json
echo " ---- copy complete ----"