session-companion/Jenkinsfile

28 lines
606 B
Plaintext
Raw Normal View History

2020-12-05 14:01:46 +01:00
pipeline {
agent {
docker {
image 'kargor8/sess-comp-base:v2'
}
}
environment {
DOTNET_CLI_HOME = '/tmp/App'
}
2020-12-05 14:01:46 +01:00
stages {
stage('Build app') {
2020-12-05 14:01:46 +01:00
steps {
dir('SessionCompanion') {
sh "echo $USER"
withEnv(["HOME=${env.WORKSPACE}"]){
sh 'dotnet build'
2020-12-05 14:01:46 +01:00
}
}
}
2020-12-05 14:01:46 +01:00
}
stage('Clarify') {
steps {
sh "echo Dziala"
2020-12-05 14:01:46 +01:00
}
}
}
}