Skip to content

Commit 63b9235

Browse files
committed
Removing llama.mobile on non-windows platforms
1 parent 1074fc7 commit 63b9235

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,14 @@ jobs:
3939
dotnet-version: |
4040
8.0.x
4141
- name: Install Mobile Workloads
42+
if: ${{ contains(runner.os, 'windows') }}
4243
run: |
4344
dotnet workload install android --ignore-failed-sources
4445
dotnet workload install maui --ignore-failed-sources
46+
- name: Remove Mobile Project
47+
if: ${{ !contains(runner.os, 'windows') }}
48+
run: |
49+
dotnet sln LLamaSharp.sln remove Llama.Mobile
4550
- name: Cache Packages
4651
uses: actions/cache@v4
4752
with:

0 commit comments

Comments
 (0)