build_darwin.sh 1.73 KB
Newer Older
Michael Yang's avatar
Michael Yang committed
1
2
#!/bin/sh

3
set -e
Michael Yang's avatar
Michael Yang committed
4

5
export VERSION=${VERSION:-$(git describe --tags --first-parent --abbrev=7 --long --dirty --always | sed -e "s/^v//g")}
Michael Yang's avatar
Michael Yang committed
6
export GOFLAGS="'-ldflags=-w -s \"-X=github.com/jmorganca/ollama/version.Version=$VERSION\" \"-X=github.com/jmorganca/ollama/server.mode=release\"'"
Jeffrey Morgan's avatar
Jeffrey Morgan committed
7
8
9

mkdir -p dist

Michael Yang's avatar
Michael Yang committed
10
for TARGETARCH in arm64 amd64; do
11
    rm -rf llm/llama.cpp/build
Michael Yang's avatar
Michael Yang committed
12
    GOOS=darwin GOARCH=$TARGETARCH go generate ./...
13
    CGO_ENABLED=1 GOOS=darwin GOARCH=$TARGETARCH go build -o dist/ollama-darwin-$TARGETARCH
14
    CGO_ENABLED=1 GOOS=darwin GOARCH=$TARGETARCH go build -cover -o dist/ollama-darwin-$TARGETARCH-cov
Michael Yang's avatar
Michael Yang committed
15
done
Michael Yang's avatar
Michael Yang committed
16

17
18
19
20
21
22
23
lipo -create -output dist/ollama dist/ollama-darwin-arm64 dist/ollama-darwin-amd64
rm -f dist/ollama-darwin-arm64 dist/ollama-darwin-amd64
if [ -n "$APPLE_IDENTITY" ]; then
    codesign --deep --force --options=runtime --sign "$APPLE_IDENTITY" --timestamp dist/ollama
else
    echo "Skipping code signing - set APPLE_IDENTITY"
fi
24
chmod +x dist/ollama
Jeffrey Morgan's avatar
Jeffrey Morgan committed
25

26
# build and optionally sign the mac app
Jeffrey Morgan's avatar
Jeffrey Morgan committed
27
npm install --prefix app
28
29
30
31
32
if [ -n "$APPLE_IDENTITY" ]; then
    npm run --prefix app make:sign
else 
    npm run --prefix app make
fi
Michael Yang's avatar
Michael Yang committed
33
cp app/out/make/zip/darwin/universal/Ollama-darwin-universal-$VERSION.zip dist/Ollama-darwin.zip
Jeffrey Morgan's avatar
Jeffrey Morgan committed
34

35
# sign the binary and rename it
36
37
38
39
40
if [ -n "$APPLE_IDENTITY" ]; then
    codesign -f --timestamp -s "$APPLE_IDENTITY" --identifier ai.ollama.ollama --options=runtime dist/ollama
else
    echo "WARNING: Skipping code signing - set APPLE_IDENTITY"
fi
41
ditto -c -k --keepParent dist/ollama dist/temp.zip
42
43
44
if [ -n "$APPLE_IDENTITY" ]; then
    xcrun notarytool submit dist/temp.zip --wait --timeout 10m --apple-id $APPLE_ID --password $APPLE_PASSWORD --team-id $APPLE_TEAM_ID
fi
Jeffrey Morgan's avatar
Jeffrey Morgan committed
45
mv dist/ollama dist/ollama-darwin
Michael Yang's avatar
Michael Yang committed
46
rm -f dist/temp.zip