1
0
mirror of https://github.com/veden/Rampant.git synced 2025-02-09 13:36:53 +02:00
Rampant/Jenkinsfile
Aaron Veden 210d76ea56 rename
2019-10-27 17:54:29 -07:00

21 lines
357 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}