Philipp Häfelfinger
5c03f6f403
Some checks failed
piwigodotnet/pipeline/head There was a failure building this commit
29 lines
484 B
Groovy
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"
|
|
}
|
|
}
|
|
}
|
|
}
|