Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,24 @@ on:
- ".github/workflows/test.yml"

jobs:
build-spm-consumer-no-submodules:
# Regression test for #94: a downstream SPM consumer never recurses
# submodules, so this job checks out *without* `submodules: recursive`
# and builds the Llama target. If this is green, anyone consuming
# LocalLLMClient via `.package(url:..., from:)` etc. can build it.
name: Build (no submodules) — regression test for #94
runs-on: macos-26
env:
DEVELOPER_DIR: "/Applications/Xcode_26.2.app/Contents/Developer"
steps:
- uses: actions/checkout@v4
# Deliberately *no* `submodules: recursive` — mirrors how SPM
# consumers receive this package.
- name: swift build LocalLLMClientLlama
run: swift build --target LocalLLMClientLlama
- name: swift build LocalLLMClientMLX
run: swift build --target LocalLLMClientMLX

test-macos:
name: Test on macOS (${{ matrix.test-type }})
runs-on: macos-26
Expand Down
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

87 changes: 87 additions & 0 deletions Package.resolved

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion Sources/LocalLLMClientLlamaC/clip-impl.h

This file was deleted.

Loading