From 9bb3000bdb08fc843e26883d7dc6710c426194d0 Mon Sep 17 00:00:00 2001 From: mvenditto Date: Thu, 15 Jun 2023 20:26:34 +0100 Subject: [PATCH] remove .exe after dotnet + fix cwd --- .circleci/continue_config.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.circleci/continue_config.yml b/.circleci/continue_config.yml index 5efed7bf..a120a813 100644 --- a/.circleci/continue_config.yml +++ b/.circleci/continue_config.yml @@ -332,7 +332,8 @@ jobs: - run: name: "Install project dependencies" command: | - dotnet.exe restore Gpt4All + cd gpt4all-bindings/csharp + dotnet restore Gpt4All - save_cache: paths: - ~/.nuget/packages @@ -340,10 +341,12 @@ jobs: - run: name: "Run C# Tests" command: | - dotnet.exe test -v n --filter --filter SKIP_ON_CI=False + cd gpt4all-bindings/csharp + dotnet test -v n --filter --filter SKIP_ON_CI=False - run: name: Build C# Project command: | + cd gpt4all-bindings/csharp dotnet build Gpt4All --configuration Release - persist_to_workspace: root: gpt4all-bindings/csharp/runtimes/linux-x64/native