1
0
mirror of https://github.com/veden/Rampant.git synced 2025-01-05 22:53:24 +02:00
Rampant/Jenkinsfile

23 lines
395 B
Plaintext
Raw Normal View History

2019-10-28 02:51:15 +02:00
pipeline {
2019-10-28 03:31:32 +02:00
agent {
docker { image 'alpine' }
}
2019-10-28 02:51:15 +02:00
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}