Skip to content

Merge pull request #6 from rekal-dev/claude/capabilities-scope-8uqk1g #73

Merge pull request #6 from rekal-dev/claude/capabilities-scope-8uqk1g

Merge pull request #6 from rekal-dev/claude/capabilities-scope-8uqk1g #73

Workflow file for this run

name: CI
on:
workflow_dispatch:
pull_request:
push:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
lfs: true
- uses: jdx/mise-action@v3
- name: Build llama.cpp
run: |
git clone --depth 1 --branch b8157 https://github.com/ggml-org/llama.cpp .deps/llama.cpp
cd .deps/llama.cpp
cmake -B build \
-DLLAMA_BUILD_TESTS=OFF -DLLAMA_BUILD_EXAMPLES=OFF \
-DLLAMA_BUILD_SERVER=OFF -DBUILD_SHARED_LIBS=OFF \
-DCMAKE_BUILD_TYPE=Release
cmake --build build --config Release -j$(nproc) --target llama --target ggml --target common
- name: Tests
run: mise run test:ci