36 lines
904 B
Groovy
36 lines
904 B
Groovy
//pipeline {
|
|
// agent any
|
|
// stages {
|
|
// stage('Build image') {
|
|
// steps {
|
|
// echo "Building docker image"
|
|
// script {
|
|
// dir('SessionCompanion/SessionCompanion'){
|
|
// def customImage = docker.build("session-companion:${env.BUILD_ID}")
|
|
// //customImage.withRun('-p 5050:5050')
|
|
// }
|
|
// }
|
|
// }
|
|
// }
|
|
// stage('Delete image') {
|
|
// steps {
|
|
// sh "docker rmi session-companion:${env.BUILD_ID}"
|
|
// }
|
|
// }
|
|
// }
|
|
//}
|
|
pipeline {
|
|
agent {
|
|
docker { image 'mcr.microsoft.com/dotnet/sdk:5.0' }
|
|
}
|
|
stages {
|
|
stage('Build') {
|
|
steps {
|
|
dir('SessionCompanion') {
|
|
sh 'dotnet build'
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|