30 lines
1.1 KiB
Bash
Executable file
30 lines
1.1 KiB
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
export VERSION=${VERSION:-0.0.0}
|
|
export GOFLAGS="'-ldflags=-w -s \"-X=github.com/jmorganca/ollama/version.Version=$VERSION\" \"-X=github.com/jmorganca/ollama/server.mode=release\"'"
|
|
|
|
mkdir -p dist
|
|
|
|
for TARGETARCH in arm64 amd64; do
|
|
GOOS=darwin GOARCH=$TARGETARCH go generate ./...
|
|
GOOS=darwin GOARCH=$TARGETARCH go build -o dist/ollama-darwin-$TARGETARCH
|
|
done
|
|
|
|
lipo -create -output dist/ollama dist/ollama-darwin-*
|
|
rm -f dist/ollama-darwin-*
|
|
codesign --deep --force --options=runtime --sign "$APPLE_IDENTITY" --timestamp dist/ollama
|
|
chmod +x dist/ollama
|
|
|
|
# build and sign the mac app
|
|
npm install --prefix app
|
|
npm run --prefix app make:sign
|
|
cp app/out/make/zip/darwin/universal/Ollama-darwin-universal-$VERSION.zip dist/Ollama-darwin.zip
|
|
|
|
# sign the binary and rename it
|
|
codesign -f --timestamp -s "$APPLE_IDENTITY" --identifier ai.ollama.ollama --options=runtime dist/ollama
|
|
ditto -c -k --keepParent dist/ollama dist/temp.zip
|
|
xcrun notarytool submit dist/temp.zip --wait --timeout 10m --apple-id $APPLE_ID --password $APPLE_PASSWORD --team-id $APPLE_TEAM_ID
|
|
mv dist/ollama dist/ollama-darwin
|
|
rm -f dist/temp.zip
|