Test new config, fixed bugs

This commit is contained in:
Karol Górzyński 2020-12-03 17:28:14 +01:00
parent 734368df68
commit 356f0b2ea1

10
Jenkinsfile vendored
View File

@ -23,10 +23,12 @@ pipeline {
agent { agent {
docker { image 'mcr.microsoft.com/dotnet/sdk:5.0' } docker { image 'mcr.microsoft.com/dotnet/sdk:5.0' }
} }
stages ('Build') { stages {
steps { stage('Build') {
dir('SessionCompanion/SessionCompanion') { steps {
sh 'dotnet build' dir('SessionCompanion/SessionCompanion') {
sh 'dotnet build'
}
} }
} }
} }