From 4b1e753f20fe1bcf4f7c8499155ceb56a227f80a Mon Sep 17 00:00:00 2001 From: ivarlovlie Date: Fri, 9 Apr 2021 21:22:03 +0200 Subject: Use full path to dotnet --- .builds/.run-tests.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.builds/.run-tests.yml b/.builds/.run-tests.yml index 2ff93d3..b1f5ab2 100644 --- a/.builds/.run-tests.yml +++ b/.builds/.run-tests.yml @@ -15,10 +15,11 @@ tasks: wget https://dot.net/v1/dotnet-install.sh chmod +x dotnet-install.sh bash dotnet-install.sh -c 5.0 - export PATH="$PATH:$HOME/.dotnet" + - display-dotnet-info: | + ./.dotnet/dotnet --info - restore: | - dotnet restore src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj + ./.dotnet/dotnet restore src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj - build: | - dotnet build --no-restore src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj + ./.dotnet/dotnet build --no-restore src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj - test: | - dotnet test --no-build --verbosity normal src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj + ./.dotnet/dotnet test --no-build --verbosity normal src/IOL.VippsEcommerce.Tests/IOL.VippsEcommerce.Tests.csproj -- cgit v1.3