session-companion/Jenkinsfile

39 lines
961 B
Plaintext
Raw Normal View History

2020-12-03 17:26:07 +01:00
//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 {
2020-12-03 17:26:07 +01:00
agent {
docker { image 'mcr.microsoft.com/dotnet/sdk:5.0' }
}
2020-12-04 14:37:46 +01:00
environment {
2020-12-04 14:38:48 +01:00
DOTNET_CLI_HOME = '/App'
2020-12-04 14:37:46 +01:00
}
2020-12-03 17:28:14 +01:00
stages {
stage('Build') {
steps {
2020-12-03 17:30:56 +01:00
dir('SessionCompanion') {
2020-12-03 17:28:14 +01:00
sh 'dotnet build'
}
}
2020-12-02 19:17:49 +01:00
}
}
}