1
0
mirror of https://github.com/veden/Rampant.git synced 2025-01-18 02:58:32 +02:00
Rampant/Jenkinsfile

23 lines
395 B
Plaintext
Raw Normal View History

2019-10-27 17:51:15 -07:00
pipeline {
2019-10-27 18:31:32 -07:00
agent {
docker { image 'alpine' }
}
2019-10-27 17:51:15 -07:00
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}