#!/bin/bash set -e case $1 in x86|arm|all) ;; *) echo "Usage: release_macos.sh [platform]\n - platform: 'x86', 'arm', 'all'" >&2 exit 1 esac if [[ ! -v SDKROOT ]]; then echo "MacOS SDKROOT is not set" exit 1 elif [[ -z "SDKROOT" ]]; then echo "MacOS SDKROOT is set to the empty string" exit 1 else echo "Use MacOS SDK: ${SDKROOT}" fi # Setup build directory BASEDIR=$(cd $(dirname $0) && pwd) cd ${BASEDIR} cd .. # Setup platform rustup target add x86_64-apple-darwin rustup target add aarch64-apple-darwin rm -rf target/x86_64-apple-darwin rm -rf target/aarch64-apple-darwin [[ $1 == "x86" ]] && arch+=(x86_64-apple-darwin) [[ $1 == "arm" ]] && arch+=(aarch64-apple-darwin) [[ $1 == "all" ]] && arch+=(universal2-apple-darwin) # Start release build with zig linker for cross-compilation # zig 0.12 required cargo install cargo-zigbuild@0.18.4 cargo zigbuild --release --target ${arch} rm -rf .intentionally-empty-file.o yes | cp -rf target/${arch}/release/grim-bin macos/Grim.app/Contents/MacOS ### Sign .app resources: #rcodesign generate-self-signed-certificate #rcodesign sign --pem-file cert.pem macos/Grim.app # Create release package FILE_NAME=Grim-0.1.0-macos-$1.zip rm -rf target/${arch}/release/${FILE_NAME} cd macos zip -r ${FILE_NAME} Grim.app mv ${FILE_NAME} ../target/${arch}/release