piwigodotnet/Jenkinsfile
Philipp Häfelfinger 1797f383d1
All checks were successful
piwigodotnet/pipeline/head This commit looks good
next try
2022-10-25 22:44:52 +02:00

32 lines
617 B
Groovy

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