Add Jenkinsfile

This commit is contained in:
Krzysztof Józefowicz 2019-11-21 21:45:07 +01:00
parent 7819525928
commit a97050aa6d

17
Jenkinsfile vendored
View File

@ -3,19 +3,12 @@ pipeline {
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
docker.image('elixir:1.9.4').inside('-u root') {
sh "echo 'SIEMA'"
sh "elixir -v"
}
}
}
}