Skip to content

Commit d6875fb

Browse files
committed
fix ci
1 parent 70eb22a commit d6875fb

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
run: dotnet --info
2424

2525
- name: Restore dependencies
26-
run: dotnet restore MLXSharp.sln
26+
run: dotnet restore
2727

2828
- name: Build C# projects (initial validation)
29-
run: dotnet build MLXSharp.sln --configuration Release --no-restore
29+
run: dotnet build --configuration Release --no-restore
3030

3131
- name: Install CMake
3232
run: brew install cmake
@@ -41,7 +41,7 @@ jobs:
4141
ls -la src/MLXSharp.Native/runtimes/osx-arm64/native/
4242
4343
- name: Rebuild solution with native libraries
44-
run: dotnet build MLXSharp.sln --configuration Release --no-restore
44+
run: dotnet build --configuration Release --no-restore
4545

4646
- name: Setup Python for HuggingFace
4747
uses: actions/setup-python@v5
@@ -66,7 +66,7 @@ jobs:
6666
ls -la "$TEST_OUTPUT/runtimes/osx-arm64/native/"
6767
6868
- name: Run tests
69-
run: dotnet test MLXSharp.sln --configuration Release --no-build --logger "trx;LogFileName=TestResults.trx" --results-directory artifacts/test-results
69+
run: dotnet test --configuration Release --no-build --logger "trx;LogFileName=TestResults.trx" --results-directory artifacts/test-results
7070
env:
7171
MLXSHARP_MODEL_PATH: ${{ github.workspace }}/models/Qwen1.5-0.5B-Chat-4bit
7272

0 commit comments

Comments
 (0)