pantry/projects/ollama.ai/package.yml

62 lines
1.3 KiB
YAML
Raw Normal View History

distributable:
url: git+https://github.com/ollama/ollama
2023-09-07 00:10:44 +03:00
ref: v{{version}}
versions:
github: ollama/ollama
dependencies:
curl.se/ca-certs: '*'
build:
dependencies:
2023-09-07 00:10:44 +03:00
go.dev: ^1.21
cmake.org: ^3
git-scm.org: ^2
script:
2023-09-07 00:10:44 +03:00
- run: |
git submodule init
git submodule update
2024-01-03 23:44:23 +03:00
if: '>=0.0.18'
2023-09-07 00:10:44 +03:00
- go generate ./...
- go build -ldflags="$GO_LDFLAGS" -o '{{prefix}}/bin/ollama' .
env:
2024-03-22 16:56:08 +03:00
GO_LDFLAGS:
# versions older than 0.1.30
2024-03-22 16:56:08 +03:00
- -X github.com/jmorganca/ollama/version.Version={{version}}
# new versions
- -X github.com/ollama/ollama/version.Version={{version}}
linux:
GO_LDFLAGS:
# else segfaults
- -buildmode=pie
provides:
- bin/ollama
test:
qa-required: true
dependencies:
linux:
gitlab.com/procps-ng/procps: '*'
script:
2024-03-22 16:56:08 +03:00
- ollama --version | grep 'client version is {{version}}'
2023-09-12 00:43:29 +03:00
# 0.0.19 complains about a missing blobs directory
- run: mkdir -p ~/.ollama/models/blobs
if: =0.0.19
# why is this killing the test, it seems like?
- run: pgrep -l ollama
if: linux
- $KILL ollama || true
- sleep 5
- ollama serve &
- sleep 5
- ollama create mario -f ./Modelfile
- ollama list | grep 'mario'
- $KILL ollama || true
env:
darwin:
KILL: killall
linux:
KILL: pkill -x