summaryrefslogtreecommitdiffstats
path: root/.builds/.run-tests.yml
diff options
context:
space:
mode:
authorivarlovlie <git@ivarlovlie.no>2021-04-09 21:22:03 +0200
committerivarlovlie <git@ivarlovlie.no>2021-04-09 21:22:03 +0200
commit4b1e753f20fe1bcf4f7c8499155ceb56a227f80a (patch)
tree46e646b1e5cc22256e033026a998dfc1a15838de /.builds/.run-tests.yml
parent683940cb37ae68780f7cc1fe9885d2e7ca9e8069 (diff)
downloaddotnet-vipps-ecommerce-4b1e753f20fe1bcf4f7c8499155ceb56a227f80a.tar.xz
dotnet-vipps-ecommerce-4b1e753f20fe1bcf4f7c8499155ceb56a227f80a.zip
Use full path to dotnet
Diffstat (limited to '.builds/.run-tests.yml')
-rw-r--r--.builds/.run-tests.yml9
1 files 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