This commit is contained in:
mvenditto 2023-06-16 20:04:08 +01:00 committed by AT
parent c3aafc81d9
commit 3853560a44

View File

@ -453,7 +453,7 @@ jobs:
name: "Install project dependencies"
command: |
cd gpt4all-bindings/csharp
$HOME/cli-tools/dotnet restore Gpt4All
dotnet restore Gpt4All
- save_cache:
paths:
- ~/.nuget/packages
@ -462,12 +462,12 @@ jobs:
name: Build C# Project
command: |
cd gpt4all-bindings/csharp
$HOME/cli-tools/dotnet build Gpt4All --configuration Release
dotnet build Gpt4All --configuration Release
- run:
name: "Run C# Tests"
command: |
cd gpt4all-bindings/csharp
$HOME/cli-tools/dotnet test Gpt4All.Tests -v n --filter "SKIP_ON_CI!=True" --logger "trx"
dotnet test Gpt4All.Tests -v n --filter "SKIP_ON_CI!=True" --logger "trx"
- run:
name: test results
command: |