Compare commits

...

9 Commits

Author SHA1 Message Date
R. Tyler Croy d3bd8fcf0a
nnnanananana 2018-09-17 05:55:59 -07:00
R. Tyler Croy 491073240a
Convert to Declarative 2018-09-17 05:51:16 -07:00
R. Tyler Croy b45392c226
Correct the 'Test' stage 2017-08-30 06:39:25 -07:00
R. Tyler Croy 7f56a5d979
MAVEN 2016-11-15 19:02:00 -08:00
R. Tyler Croy 920c2e18ed
DOCKER 2016-11-15 18:59:21 -08:00
R. Tyler Croy 8ceb710c48
DERP 2016-11-15 18:56:50 -08:00
R. Tyler Croy d7d399a365
Add cron 2016-11-15 17:40:23 -08:00
R. Tyler Croy 93468e1d36
lol 2016-11-15 17:13:44 -08:00
R. Tyler Croy 602668ec91
Add a simple little hello world 2016-11-15 11:30:45 -08:00
1 changed files with 28 additions and 0 deletions

28
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,28 @@
#!/usr/bin/env groovy
pipeline {
agent none
stages {
stage('Build') {
agent { docker 'alpine' }
steps {
echo 'I am building'
sh 'uname -a'
}
}
stage('Test') {
agent { docker 'maven' }
steps {
sh 'mvn --version'
}
}
stage('Deploy') {
agent { docker 'alpine' }
steps {
echo 'Deploying to serverless cloud containers etc'
}
}
}
}