* broad lint fixes to sidestep CI scope glitch * runner: Remove CGO engines, use llama-server exclusively for GGML models Remove the vendored GGML and llama.cpp backend, CGO runner, Go model implementations, and sample. llama-server (built from upstream llama.cpp via FetchContent) is now the sole inference engine for GGUF-based models. (Safetensor based models continue to run on the new MLX engine.) This allows us to more rapidly pick up new capabilities and fixes from llama.cpp as they come out. On windows this now requires recent AMD driver versions to support ROCm v7 as llama.cpp currently does not support building against v6. * llama/compat: load Ollama-format GGUFs in llama-server Squashed from upstream/jmorganca/llama-compat on 2026-04-29. Source tip: 0c33775d378511a9b3c7f2e3b80eda355511d9f3. Original source commits: - 25223160d llama/compat: add in-memory shim so llama-server can load Ollama-format GGUFs - 7449b539a llm,server: route Ollama-format gemma3 blobs through llama/compat - 436f2e2b1 llama/compat: make patch-apply idempotent - 8c2c9d4c8 llama/compat: extend gemma3 handler to cover 1B and 270M blobs - 021389f7b llama/compat: shrink clip.cpp injection from 18 lines to 1 - 61b367ec2 llama/compat: shrink patch to pure call-site hooks (34 -> 20 lines) - 36049361c llama/compat: simplify shim (gemma3-tested) - 8fa664865 llama/compat: add qwen35moe text handler - db0c74530 llama/compat: add qwen35moe vision (clip) support - 2a388da77 llama/compat: split shared infra into a util TU - 9a69a17dc llama/compat: document non-public API dependencies - d0f38a915 llama/compat: add gpt-oss and lfm2 handlers - 086071822 llama/compat: add mistral3 text handler (vision TODO) - 63bde9ff7 llama/compat: add mistral3 vision (clip) support - 3a57b89d5 llama/compat: apply LLaMA RoPE permute to mistral3 vision Q/K - 99cb87439 llama/compat: add qwen35, gemma4, deepseek-ocr handlers - 2c7850dba llama/compat: add nemotron_h_moe handler (latent FFN + MTP skip) - 9e3b54225 llama/compat: add llama4 text + clip handlers - 034fee349 llama/compat: add gemma4 clip handler (gemma4v projector) - 9945c5a93 server: remove dhiltgen/* compat redirect table - 5d4539101 llama/compat: rewrite gemma4 tokenizer model to BPE - 7e0765327 llama/compat: add glm-ocr text handler + text-loader load-op hook - f1bd1a25a llama/compat: add glm-ocr clip handler (glm4v projector) - 4b5cf3420 llama/compat: collapse text-loader hook back to one new patch line - eb4ecf4fc llama/compat: extend gemma4 clip handler to gemma4a (audio) - a23a5e76f llama/compat: fix gemma4a per-block norm tensor mapping - cd2dcaff4 llama/compat: add embeddinggemma handler - 1ce8a6b26 llama/compat: add qwen3-vl + qwen2.5-vl handlers - fd98ffa1e llama/compat: add gemma3n + glm4moelite handlers - cc7bdf0bc llama/compat: handle null buft in maybe_load_tensor - 0c33775d3 llama/compat: disable mmap when load_op transforms text-side tensors * refine implementation * ci: fix windows MLX build * ci: fix windows llama-server build * ci: fix windows rocm build * ci: windows mlx tuning Shorten long-tail on build, and get OllamaSetup.exe back under 2g limit * ci: fix windows dependencies * win: fix dependency gathering * disable openmp * win: arm64 cross-compile build also DRY out CI steps * scheduler improvements * ci: improvements from #15982 * win: favor ninja for faster developer builds * win: fix build * win: fix arm64 cross-compile * win: avoid spaces in compiler path * misc discovery fixes, and bos handling * lint fixes * win: fix arm cross-compile build/CI bugs * llama.cpp update * win: handle multiple CRT dirs * vulkan: add windows iGPU detection * fix creation bugs for patched models, other refactoring work * tune batch size for better performance * ci and lint fixes * fix repeat_last_n bug * build: revamp build for better developer UX * amd, sampler, qwen3next fixes * version bump * fix mlx build * revamp GPU discovery Scanning the output of llama-server is turning out to be too error prone across llama.cpp updates, so this switches to a thin dynamic library load against the bundled GGML libraries so more details can be gathered from the API. * version bump * missing file * ci: fix cache miss on rocm build * refine vulkan dep handling * fix ps reporting bug on full GPU load * improve cmake wiring for customized local builds * version bump * docker build arg cleanup * improve windows exit error logs * fix community gemma4 support and ci flakes * fix mlx unit test * tighten up ps logic to avoid double counting fit log lines * version bump * fix ps view for full gpu layer offload * add MTP wiring for llama-server and create with GGUFs * pick best template by capabilities * version bump * ci: harden apt repos * remove unused cpu core discovery * adjust batch default logic to reduce OOMs * support larger tool calls * fix audio support, template show * qwen35 mtp patch support * flesh out dtypes * rocm deps * version bump * lint fix * block broken gfx1150 on windows * fix qwen3.5 moe mtp tensors in patch * mmproj oom fallback and vulkan on by default * qwen MTP compat fix * version bump * ci: fix WoA cross-compile * ci: workaround ui tool in cross-compile * version bump * win: enable OpenMP for CPU builds * build: improve developer UX * ci: windows path workaround for CPU build * win: fix WoA dependencies * win: fix large offset reads for mmproj patched loads * version bump * fix vulkan dup detection * add OLLAMA_IGPU_ENABLE and largely disable iGPUs by default * opt-in MTP, win large offset, integraton fixes * fix unit test scheduler interaction hang * fix multi-gpu filtering * version bump * review comments * fix thinking level * fix linux rocm ordering and granite 3.3 template * version bump * ci fix - non-shallow MLX checkout * bypass linux sysfs unit test on windows --------- Co-authored-by: jmorganca <jmorganca@gmail.com>
421 lines
20 KiB
YAML
421 lines
20 KiB
YAML
name: test
|
|
|
|
concurrency:
|
|
# For PRs, later CI runs preempt previous ones. e.g. a force push on a PR
|
|
# cancels running CI jobs and starts all new ones.
|
|
#
|
|
# For non-PR pushes, concurrency.group needs to be unique for every distinct
|
|
# CI run we want to have happen. Use run_id, which in practice means all
|
|
# non-PR CI runs will be allowed to run without preempting each other.
|
|
group: ${{ github.workflow }}-$${{ github.pull_request.number || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- '**/*'
|
|
- '!docs/**'
|
|
- '!README.md'
|
|
|
|
jobs:
|
|
changes:
|
|
runs-on: ubuntu-latest
|
|
outputs:
|
|
changed: ${{ steps.changes.outputs.changed }}
|
|
app_changed: ${{ steps.changes.outputs.app_changed }}
|
|
enginehash: ${{ steps.changes.outputs.enginehash }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
- id: changes
|
|
run: |
|
|
changed() {
|
|
local BASE=${{ github.event.pull_request.base.sha }}
|
|
local HEAD=${{ github.event.pull_request.head.sha }}
|
|
local MERGE_BASE=$(git merge-base $BASE $HEAD)
|
|
git diff-tree -r --no-commit-id --name-only "$MERGE_BASE" "$HEAD" \
|
|
| xargs python3 -c "import sys; from pathlib import Path; print(any(Path(x).match(glob) for x in sys.argv[1:] for glob in '$*'.split(' ')))"
|
|
}
|
|
|
|
echo changed=$(changed \
|
|
'CMakeLists.txt' \
|
|
'CMakePresets.json' \
|
|
'cmake/**' \
|
|
'cmake/**/*' \
|
|
'llama/server/**/*' \
|
|
'llama/compat/**/*' \
|
|
'LLAMA_CPP_VERSION' \
|
|
'MLX_VERSION' \
|
|
'MLX_C_VERSION' \
|
|
'llama/llama.cpp/**/*' \
|
|
'ml/backend/ggml/ggml/**/*' \
|
|
'x/imagegen/mlx/**' \
|
|
'x/imagegen/mlx/**/*' \
|
|
'.github/**/*') | tee -a $GITHUB_OUTPUT
|
|
echo app_changed=$(changed 'app/**' 'app/**/*') | tee -a $GITHUB_OUTPUT
|
|
echo enginehash=$(cat LLAMA_CPP_VERSION)-$(cat MLX_VERSION)-$(cat MLX_C_VERSION) | tee -a $GITHUB_OUTPUT
|
|
|
|
patches:
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Verify patches apply cleanly
|
|
shell: bash
|
|
run: |
|
|
cmake -S llama/server -B "$RUNNER_TEMP/llama-server-patch-check" \
|
|
-DCMAKE_BUILD_TYPE=Release \
|
|
-DBUILD_SHARED_LIBS=ON \
|
|
-DGGML_BACKEND_DL=ON \
|
|
-DGGML_NATIVE=OFF \
|
|
-DGGML_OPENMP=OFF \
|
|
-DGGML_CPU_ALL_VARIANTS=ON \
|
|
-DOLLAMA_RUNNER_DIR=
|
|
|
|
linux:
|
|
needs: [changes]
|
|
if: needs.changes.outputs.changed == 'True'
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- preset: CPU
|
|
superbuild_target: ollama-local
|
|
superbuild_dir: build/local-superbuild
|
|
superbuild_args: ''
|
|
expected_payload: lib/ollama/llama-server
|
|
install-go: true
|
|
- preset: CUDA
|
|
container: nvidia/cuda:13.0.0-devel-ubuntu22.04
|
|
superbuild_target: ollama-llama-server-cuda_v13
|
|
superbuild_dir: build/local-superbuild-cuda_v13
|
|
superbuild_args: '-DOLLAMA_LLAMA_BACKENDS=cuda_v13 -DCMAKE_CUDA_ARCHITECTURES=87'
|
|
expected_payload: lib/ollama/cuda_v13/libggml-cuda.so
|
|
- preset: ROCm
|
|
container: rocm/dev-ubuntu-22.04:7.2.1
|
|
extra-packages: rocm-libs
|
|
superbuild_target: ollama-llama-server-rocm_v7_2
|
|
superbuild_dir: build/local-superbuild-rocm_v7_2
|
|
superbuild_args: '-DOLLAMA_LLAMA_BACKENDS=rocm_v7_2 -DAMDGPU_TARGETS=gfx1010 -DCMAKE_PREFIX_PATH=/opt/rocm'
|
|
expected_payload: lib/ollama/rocm_v7_2/libggml-hip.so
|
|
- preset: Vulkan
|
|
container: ubuntu:22.04
|
|
extra-packages: >
|
|
mesa-vulkan-drivers vulkan-tools
|
|
libvulkan1 libvulkan-dev
|
|
vulkan-sdk spirv-headers cmake ccache g++ make
|
|
superbuild_target: ollama-llama-server-vulkan
|
|
superbuild_dir: build/local-superbuild-vulkan
|
|
superbuild_args: '-DOLLAMA_LLAMA_BACKENDS=vulkan'
|
|
expected_payload: lib/ollama/vulkan/libggml-vulkan.so
|
|
- preset: 'MLX CUDA 13'
|
|
container: nvidia/cuda:13.0.0-devel-ubuntu22.04
|
|
extra-packages: libcudnn9-dev-cuda-13 libopenblas-dev liblapack-dev liblapacke-dev git curl
|
|
superbuild_target: ollama-mlx-cuda_v13
|
|
superbuild_dir: build/local-superbuild-mlx-cuda_v13
|
|
superbuild_args: '-DOLLAMA_MLX_BACKENDS=cuda_v13 -DCMAKE_CUDA_ARCHITECTURES=87 -DMLX_CUDA_ARCHITECTURES=80-virtual -DBLAS_INCLUDE_DIRS=/usr/include/x86_64-linux-gnu -DLAPACK_INCLUDE_DIRS=/usr/include/x86_64-linux-gnu'
|
|
expected_payload: lib/ollama/mlx_cuda_v13/libmlx.so
|
|
install-go: true
|
|
runs-on: linux
|
|
container: ${{ matrix.container }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: |
|
|
[ -n "${{ matrix.container }}" ] || sudo=sudo
|
|
$sudo apt-get update
|
|
# Add LunarG Vulkan SDK apt repo for Ubuntu 22.04
|
|
if [ "${{ matrix.preset }}" = "Vulkan" ]; then
|
|
$sudo apt-get install -y --no-install-recommends wget gnupg ca-certificates software-properties-common
|
|
wget -qO - https://packages.lunarg.com/lunarg-signing-key-pub.asc | $sudo gpg --dearmor -o /usr/share/keyrings/lunarg-archive-keyring.gpg
|
|
# Use signed-by to bind the repo to the installed keyring to avoid NO_PUBKEY
|
|
echo "deb [signed-by=/usr/share/keyrings/lunarg-archive-keyring.gpg] https://packages.lunarg.com/vulkan/1.4.313 jammy main" | $sudo tee /etc/apt/sources.list.d/lunarg-vulkan-1.4.313-jammy.list > /dev/null
|
|
$sudo apt-get update
|
|
fi
|
|
$sudo apt-get install -y cmake ccache curl git ${{ matrix.extra-packages }}
|
|
# Use a current CMake for upstream llama.cpp and Vulkan dependency discovery.
|
|
curl -fsSL https://github.com/Kitware/CMake/releases/download/v3.31.2/cmake-3.31.2-linux-$(uname -m).tar.gz | $sudo tar xz -C /usr/local --strip-components 1
|
|
# Export VULKAN_SDK if provided by LunarG package (defensive)
|
|
if [ -d "/usr/lib/x86_64-linux-gnu/vulkan" ] && [ "${{ matrix.preset }}" = "Vulkan" ]; then
|
|
echo "VULKAN_SDK=/usr" >> $GITHUB_ENV
|
|
fi
|
|
env:
|
|
DEBIAN_FRONTEND: noninteractive
|
|
- if: matrix.install-go
|
|
name: Install Go
|
|
run: |
|
|
[ -n "${{ matrix.container }}" ] || sudo=sudo
|
|
GO_VERSION=$(awk '/^go / { print $2 }' go.mod)
|
|
curl -fsSL "https://golang.org/dl/go${GO_VERSION}.linux-$(dpkg --print-architecture).tar.gz" | $sudo tar xz -C /usr/local
|
|
echo "/usr/local/go/bin" >> $GITHUB_PATH
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: /github/home/.cache/ccache
|
|
key: ccache-${{ runner.os }}-${{ runner.arch }}-${{ matrix.preset }}-${{ needs.changes.outputs.enginehash }}
|
|
- name: Build native superbuild
|
|
if: matrix.superbuild_target
|
|
run: |
|
|
cmake -S . -B "${{ matrix.superbuild_dir }}" ${{ matrix.superbuild_args }}
|
|
CMAKE_BUILD_PARALLEL_LEVEL=$(nproc) cmake --build "${{ matrix.superbuild_dir }}" --target "${{ matrix.superbuild_target }}" -- -l $(nproc)
|
|
test -e "${{ matrix.superbuild_dir }}/${{ matrix.expected_payload }}"
|
|
- name: Verify local superbuild install
|
|
if: matrix.superbuild_target == 'ollama-local'
|
|
run: |
|
|
./ollama --version
|
|
"${{ matrix.superbuild_dir }}/lib/ollama/llama-server" --version
|
|
test -x "${{ matrix.superbuild_dir }}/lib/ollama/llama-quantize"
|
|
cmake --install "${{ matrix.superbuild_dir }}" --component ollama-local --prefix "$RUNNER_TEMP/ollama-local"
|
|
"$RUNNER_TEMP/ollama-local/bin/ollama" --version
|
|
"$RUNNER_TEMP/ollama-local/lib/ollama/llama-server" --version
|
|
test -x "$RUNNER_TEMP/ollama-local/lib/ollama/llama-quantize"
|
|
windows:
|
|
needs: [changes]
|
|
if: needs.changes.outputs.changed == 'True'
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- preset: CPU
|
|
superbuild_target: ollama-local
|
|
superbuild_dir: build\local-superbuild
|
|
superbuild_args: ''
|
|
expected_payload: lib\ollama\llama-server.exe
|
|
- preset: CUDA
|
|
install: https://developer.download.nvidia.com/compute/cuda/13.0.0/local_installers/cuda_13.0.0_windows.exe
|
|
superbuild_target: ollama-llama-server-cuda_v13
|
|
superbuild_dir: build\local-superbuild-cuda_v13
|
|
superbuild_args: '-DOLLAMA_LLAMA_BACKENDS=cuda_v13 -DCMAKE_CUDA_ARCHITECTURES=80'
|
|
expected_payload: lib\ollama\cuda_v13\ggml-cuda.dll
|
|
cuda-components:
|
|
- '"cudart"'
|
|
- '"nvcc"'
|
|
- '"cublas"'
|
|
- '"cublas_dev"'
|
|
- '"crt"'
|
|
- '"nvvm"'
|
|
- '"nvptxcompiler"'
|
|
cuda-version: '13.0'
|
|
- preset: ROCm
|
|
install: https://download.amd.com/developer/eula/rocm-hub/AMD-Software-PRO-Edition-26.Q1-Win11-For-HIP.exe
|
|
rocm-version: '7.1'
|
|
superbuild_target: ollama-llama-server-rocm_v7_1
|
|
superbuild_dir: build\local-superbuild-rocm_v7_1
|
|
superbuild_args: '-DOLLAMA_LLAMA_BACKENDS=rocm_v7_1 -DAMDGPU_TARGETS=gfx1010'
|
|
expected_payload: lib\ollama\rocm_v7_1\ggml-hip.dll
|
|
- preset: Vulkan
|
|
install: https://sdk.lunarg.com/sdk/download/1.4.321.1/windows/vulkansdk-windows-X64-1.4.321.1.exe
|
|
superbuild_target: ollama-llama-server-vulkan
|
|
superbuild_dir: build\local-superbuild-vulkan
|
|
superbuild_args: '-DOLLAMA_LLAMA_BACKENDS=vulkan'
|
|
expected_payload: lib\ollama\vulkan\ggml-vulkan.dll
|
|
- preset: 'MLX CUDA 13'
|
|
install: https://developer.download.nvidia.com/compute/cuda/13.0.0/local_installers/cuda_13.0.0_windows.exe
|
|
cudnn-install: https://developer.download.nvidia.com/compute/cudnn/redist/cudnn/windows-x86_64/cudnn-windows-x86_64-9.18.1.3_cuda13-archive.zip
|
|
superbuild_target: ollama-mlx-cuda_v13
|
|
superbuild_dir: build\local-superbuild-mlx-cuda_v13
|
|
superbuild_args: '-DOLLAMA_MLX_BACKENDS=cuda_v13 -DCMAKE_CUDA_ARCHITECTURES=80 -DMLX_CUDA_ARCHITECTURES=80-virtual'
|
|
expected_payload: lib\ollama\mlx_cuda_v13\mlx.dll
|
|
install-go: true
|
|
cuda-components:
|
|
- '"cudart"'
|
|
- '"nvcc"'
|
|
- '"cublas"'
|
|
- '"cublas_dev"'
|
|
- '"cufft"'
|
|
- '"cufft_dev"'
|
|
- '"nvrtc"'
|
|
- '"nvrtc_dev"'
|
|
- '"crt"'
|
|
- '"nvvm"'
|
|
- '"nvptxcompiler"'
|
|
cuda-version: '13.0'
|
|
runs-on: windows
|
|
steps:
|
|
- run: |
|
|
choco install -y --no-progress ccache ninja
|
|
if (Get-Command ccache -ErrorAction SilentlyContinue) {
|
|
ccache -o cache_dir=${{ github.workspace }}\.ccache
|
|
}
|
|
- if: matrix.preset == 'CUDA' || matrix.preset == 'ROCm' || matrix.preset == 'Vulkan' || matrix.preset == 'MLX CUDA 13'
|
|
id: cache-install
|
|
uses: actions/cache/restore@v4
|
|
with:
|
|
path: |
|
|
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA
|
|
C:\Program Files\AMD\ROCm
|
|
C:\VulkanSDK
|
|
C:\Program Files\NVIDIA\CUDNN
|
|
key: ${{ matrix.install }}-${{ matrix.cudnn-install }}
|
|
- if: matrix.preset == 'CUDA' || matrix.preset == 'MLX CUDA 13'
|
|
name: Install CUDA ${{ matrix.cuda-version }}
|
|
run: |
|
|
$ErrorActionPreference = "Stop"
|
|
if ("${{ steps.cache-install.outputs.cache-hit }}" -ne 'true') {
|
|
Invoke-WebRequest -Uri "${{ matrix.install }}" -OutFile "install.exe"
|
|
$subpackages = @(${{ join(matrix.cuda-components, ', ') }}) | Foreach-Object {"${_}_${{ matrix.cuda-version }}"}
|
|
Start-Process -FilePath .\install.exe -ArgumentList (@("-s") + $subpackages) -NoNewWindow -Wait
|
|
}
|
|
|
|
$cudaPath = (Resolve-Path "C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA\*").path
|
|
echo "$cudaPath\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
- if: matrix.preset == 'ROCm'
|
|
name: Install ROCm ${{ matrix.rocm-version }}
|
|
run: |
|
|
$ErrorActionPreference = "Stop"
|
|
if ("${{ steps.cache-install.outputs.cache-hit }}" -ne 'true') {
|
|
Invoke-WebRequest -Uri "${{ matrix.install }}" -OutFile "install.exe"
|
|
Start-Process -FilePath .\install.exe -ArgumentList '-install' -NoNewWindow -Wait
|
|
}
|
|
|
|
$hipPath = (Resolve-Path "C:\Program Files\AMD\ROCm\*").path
|
|
echo "$hipPath\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
echo "CC=$hipPath\bin\clang.exe" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
echo "CXX=$hipPath\bin\clang++.exe" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
echo "HIPCXX=$hipPath\bin\clang++.exe" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
echo "HIP_PLATFORM=amd" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
echo "CMAKE_PREFIX_PATH=$hipPath" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
- if: matrix.preset == 'Vulkan'
|
|
name: Install Vulkan ${{ matrix.rocm-version }}
|
|
run: |
|
|
$ErrorActionPreference = "Stop"
|
|
if ("${{ steps.cache-install.outputs.cache-hit }}" -ne 'true') {
|
|
Invoke-WebRequest -Uri "${{ matrix.install }}" -OutFile "install.exe"
|
|
Start-Process -FilePath .\install.exe -ArgumentList "-c","--am","--al","in" -NoNewWindow -Wait
|
|
}
|
|
|
|
$vulkanPath = (Resolve-Path "C:\VulkanSDK\*").path
|
|
$vulkanRuntime = Join-Path $vulkanPath "Helpers\VulkanRT.exe"
|
|
if (Test-Path $vulkanRuntime) {
|
|
Start-Process -FilePath $vulkanRuntime -ArgumentList "/s" -NoNewWindow -Wait
|
|
}
|
|
echo "$vulkanPath\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
echo "VULKAN_SDK=$vulkanPath" >> $env:GITHUB_ENV
|
|
- if: matrix.preset == 'MLX CUDA 13'
|
|
name: Install cuDNN for MLX
|
|
run: |
|
|
$ErrorActionPreference = "Stop"
|
|
$cudnnRoot = "C:\Program Files\NVIDIA\CUDNN"
|
|
if ("${{ steps.cache-install.outputs.cache-hit }}" -ne 'true') {
|
|
Invoke-WebRequest -Uri "${{ matrix.cudnn-install }}" -OutFile "cudnn.zip"
|
|
Expand-Archive -Path cudnn.zip -DestinationPath cudnn-extracted
|
|
$cudnnDir = (Get-ChildItem -Path cudnn-extracted -Directory)[0].FullName
|
|
New-Item -ItemType Directory -Force -Path $cudnnRoot
|
|
Copy-Item -Path "$cudnnDir\*" -Destination "$cudnnRoot\" -Recurse
|
|
}
|
|
|
|
echo "CUDNN_ROOT_DIR=$cudnnRoot" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
echo "CUDNN_INCLUDE_PATH=$cudnnRoot\include" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
echo "CUDNN_LIBRARY_PATH=$cudnnRoot\lib\x64" | Out-File -FilePath $env:GITHUB_ENV -Append
|
|
echo "$cudnnRoot\bin\x64" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
|
|
- if: ${{ !cancelled() && steps.cache-install.outputs.cache-hit != 'true' }}
|
|
uses: actions/cache/save@v4
|
|
with:
|
|
path: |
|
|
C:\Program Files\NVIDIA GPU Computing Toolkit\CUDA
|
|
C:\Program Files\AMD\ROCm
|
|
C:\VulkanSDK
|
|
C:\Program Files\NVIDIA\CUDNN
|
|
key: ${{ matrix.install }}-${{ matrix.cudnn-install }}
|
|
- uses: actions/checkout@v4
|
|
- if: matrix.superbuild_target == 'ollama-local' || matrix.install-go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
- uses: actions/cache@v4
|
|
with:
|
|
path: ${{ github.workspace }}\.ccache
|
|
key: ccache-${{ runner.os }}-${{ runner.arch }}-${{ matrix.preset }}-${{ needs.changes.outputs.enginehash }}
|
|
- name: Build native superbuild
|
|
if: matrix.superbuild_target
|
|
run: |
|
|
$ErrorActionPreference = "Stop"
|
|
Import-Module 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise\Common7\Tools\Microsoft.VisualStudio.DevShell.dll'
|
|
Enter-VsDevShell -VsInstallPath 'C:\Program Files\Microsoft Visual Studio\2022\Enterprise' -SkipAutomaticLocation -DevCmdArguments '-arch=x64 -no_logo'
|
|
cmake -S . -B "${{ matrix.superbuild_dir }}" ${{ matrix.superbuild_args }}
|
|
$env:CMAKE_BUILD_PARALLEL_LEVEL = [Environment]::ProcessorCount
|
|
cmake --build "${{ matrix.superbuild_dir }}" --target "${{ matrix.superbuild_target }}" -- -l $([Environment]::ProcessorCount)
|
|
if (!(Test-Path "${{ matrix.superbuild_dir }}\${{ matrix.expected_payload }}")) {
|
|
throw "missing ${{ matrix.expected_payload }}"
|
|
}
|
|
env:
|
|
CMAKE_GENERATOR: Ninja
|
|
- name: Verify local superbuild install
|
|
if: matrix.superbuild_target == 'ollama-local'
|
|
run: |
|
|
$ErrorActionPreference = "Stop"
|
|
& ".\ollama.exe" --version
|
|
& "${{ matrix.superbuild_dir }}\lib\ollama\llama-server.exe" --version
|
|
if (!(Test-Path "${{ matrix.superbuild_dir }}\lib\ollama\llama-quantize.exe")) {
|
|
throw "missing llama-quantize.exe"
|
|
}
|
|
$installPrefix = Join-Path $env:RUNNER_TEMP "ollama-local"
|
|
cmake --install "${{ matrix.superbuild_dir }}" --component ollama-local --prefix "$installPrefix"
|
|
& "$installPrefix\bin\ollama.exe" --version
|
|
& "$installPrefix\lib\ollama\llama-server.exe" --version
|
|
if (!(Test-Path "$installPrefix\lib\ollama\llama-quantize.exe")) {
|
|
throw "missing installed llama-quantize.exe"
|
|
}
|
|
go_mod_tidy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: check that 'go mod tidy' is clean
|
|
run: go mod tidy --diff || (echo "Please run 'go mod tidy'." && exit 1)
|
|
|
|
test:
|
|
needs: [changes]
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.os }}
|
|
env:
|
|
CGO_ENABLED: '1'
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version-file: 'go.mod'
|
|
cache-dependency-path: |
|
|
go.sum
|
|
LLAMA_CPP_VERSION
|
|
MLX_VERSION
|
|
MLX_C_VERSION
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
- name: Install UI dependencies
|
|
working-directory: ./app/ui/app
|
|
run: npm ci
|
|
- name: Install tscriptify
|
|
run: |
|
|
go install github.com/tkrajina/typescriptify-golang-structs/tscriptify@latest
|
|
- name: Run UI tests
|
|
if: ${{ startsWith(matrix.os, 'ubuntu') }}
|
|
working-directory: ./app/ui/app
|
|
run: npm test
|
|
- name: Verify MLX generated files are current
|
|
if: ${{ startsWith(matrix.os, 'ubuntu') }}
|
|
run: |
|
|
cmake -S . -B build/mlx-generate -DOLLAMA_MLX_BACKENDS=cuda_v13
|
|
cmake --build build/mlx-generate --target ollama-mlx-generate-wrappers
|
|
git diff --exit-code -- \
|
|
x/imagegen/mlx/mlx.h \
|
|
x/imagegen/mlx/mlx.c \
|
|
x/mlxrunner/mlx/generated.h \
|
|
x/mlxrunner/mlx/generated.c \
|
|
x/mlxrunner/mlx/include/mlx/c
|
|
- name: Run go generate
|
|
run: go generate ./...
|
|
|
|
- name: go test
|
|
if: always()
|
|
run: go test -count=1 -benchtime=1x ./...
|
|
|
|
- name: go test app with live updater tag
|
|
if: ${{ needs.changes.outputs.app_changed == 'True' && contains(fromJSON('["macos-latest","windows-latest"]'), matrix.os) }}
|
|
run: go test -count=1 -tags updater_live ./app/...
|
|
|
|
- uses: golangci/golangci-lint-action@v9
|
|
with:
|
|
only-new-issues: true
|