From 0b117e6429ba4d0edc06fbfe495af58470c99138 Mon Sep 17 00:00:00 2001 From: kenorb Date: Tue, 18 Aug 2026 18:15:44 +0100 Subject: [PATCH] Add ollama to eget packages --- .ansible/playbooks/tasks/eget.yml | 1 + .ansible/variables-example.yml | 1 + 2 files changed, 2 insertions(+) diff --git a/.ansible/playbooks/tasks/eget.yml b/.ansible/playbooks/tasks/eget.yml index 67d6c5c..ff7a70b 100644 --- a/.ansible/playbooks/tasks/eget.yml +++ b/.ansible/playbooks/tasks/eget.yml @@ -113,6 +113,7 @@ else 'arm64' if eget_arch == 'arm64' else 'armv7l' }}.tar.xz + ollama: "-a ollama-linux-{{ 'amd64' if eget_arch == 'x86_64' else 'arm64' }}.tar.zst -a ^mlx -a ^rocm ollama/ollama" oyster: "--tag pearl-wallet-v1.0.0 -a .tar.gz --file oyster --to oyster pearl-research-labs/pearl" pandoc: "-a linux-{{ 'amd64' if eget_arch == 'x86_64' else 'arm64' }}.tar.gz jgm/pandoc" pearld: "--tag pearl-wallet-v1.0.0 -a .tar.gz --file pearld --to pearld pearl-research-labs/pearl" diff --git a/.ansible/variables-example.yml b/.ansible/variables-example.yml index 5d58669..0015287 100644 --- a/.ansible/variables-example.yml +++ b/.ansible/variables-example.yml @@ -168,6 +168,7 @@ eget_packages: - lighthouse # Ethereum consensus client in Rust (sigp/lighthouse) - nethermind # A robust execution client for Ethereum node operators (NethermindEth/nethermind) - node # JavaScript runtime built on Chrome's V8 JavaScript engine (nodejs/node) + - ollama # Run large language models locally (ollama/ollama) - oyster # Pearl Wallet management (pearl-research-labs/pearl) - pandoc # Universal markup converter (jgm/pandoc) - pearld # Pearl Full node (pearl-research-labs/pearl)