piwigodotnet/Jenkinsfile
Philipp Häfelfinger 5c03f6f403
Some checks failed
piwigodotnet/pipeline/head There was a failure building this commit
fixes socker container *facepalm*
2022-10-25 22:31:58 +02:00

29 lines
484 B
Groovy

pipeline {
agent {
docker { image 'mcr.microsoft.com/dotnet/sdk:6.0'}
}
stages {
stage('nuget restore') {
steps {
sh "cd ${env.WORKSPACE}/src"
sh "dotnet restore"
}
}
stage('build') {
steps {
sh "cd ${env.WORKSPACE}/src"
sh "dotnet build -p:Version=0.1.0.${env.BUILD_NUMBER}"
}
}
stage('Testing') {
steps {
sh "cd ${env.WORKSPACE}/src"
sh "dotnet test"
}
}
}
}