From 888036a99d18c31775436edfa54ce4f733cbdaaa Mon Sep 17 00:00:00 2001 From: "nicolas.dorier" Date: Tue, 13 Nov 2018 15:55:10 +0900 Subject: [PATCH] use docker on Circle CI --- .circleci/config.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6523204a7..9034969d2 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -6,17 +6,12 @@ jobs: steps: - checkout test: - machine: true + docker: + - image: microsoft/dotnet:2.1.403-sdk-alpine3.7 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 dotnet build /p:TreatWarningsAsErrors=true cd BTCPayServer.Tests