Workaround to compile on circle

This commit is contained in:
nicolas.dorier
2018-11-13 16:16:57 +09:00
parent 888036a99d
commit f2387fd6b5

View File

@@ -6,13 +6,19 @@ jobs:
steps:
- checkout
test:
docker:
- image: microsoft/dotnet:2.1.403-sdk-alpine3.7
machine: true
steps:
- checkout
- run:
command: |
lsb_release -a
wget -q https://packages.microsoft.com/config/ubuntu/14.04/packages-microsoft-prod.deb
sudo dpkg -i packages-microsoft-prod.deb
sudo apt-get install apt-transport-https
sudo apt-get update
sudo apt-get install dotnet-sdk-2.1
dotnet --info
rm global.json
dotnet build /p:TreatWarningsAsErrors=true
cd BTCPayServer.Tests
dotnet test --filter Fast=Fast