fix(ci): Remove restore
continuous-integration/drone/push Build is failing Details

This is a temporary measure basically just to test the pipeline

Signed-off-by: Sam Therapy <sam@samtherapy.net>
This commit is contained in:
Sam Therapy 2022-11-15 17:35:38 +01:00
parent e2ec4a5857
commit 01df5c6139
Signed by: sam
GPG Key ID: 4D8B07C18F31ACBD
1 changed files with 3 additions and 2 deletions

View File

@ -11,12 +11,13 @@ steps:
- name: Build
image: mcr.microsoft.com/dotnet/sdk:6.0
commands:
- dotnet build --configuration Release --no-restore ./src
- dotnet build --configuration Release ./src
- name: Test
image: mcr.microsoft.com/dotnet/sdk:6.0
commands:
- sed -i "s/127\.0\.0\.1/database/g" ./src/Tests/BirdsiteLive.DAL.Postgres.Tests/DataAccessLayers/Base/PostgresTestingBase.cs
- dotnet test --no-restore --verbosity minimal ./src
- dotnet test --verbosity minimal ./src
services:
- name: database