From 356f0b2ea180d9503f7f28e720dcc752d7e810ed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karol=20G=C3=B3rzy=C5=84ski?= Date: Thu, 3 Dec 2020 17:28:14 +0100 Subject: [PATCH] Test new config, fixed bugs --- Jenkinsfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 9fff4f8..79058e1 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,10 +23,12 @@ pipeline { agent { docker { image 'mcr.microsoft.com/dotnet/sdk:5.0' } } - stages ('Build') { - steps { - dir('SessionCompanion/SessionCompanion') { - sh 'dotnet build' + stages { + stage('Build') { + steps { + dir('SessionCompanion/SessionCompanion') { + sh 'dotnet build' + } } } }