Compare commits

...

10 Commits

Author SHA1 Message Date
R. Tyler Croy ae40db2050
artifact 2016-11-15 19:14:27 -08:00
R. Tyler Croy 1855ebed34
artifact 2016-11-15 19:09:19 -08:00
R. Tyler Croy 0aa02f6cc3
RUNRUNRUN 2016-11-15 19:07:11 -08:00
R. Tyler Croy 6c317c3a63
RN 2016-11-15 19:05:29 -08: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 26 additions and 0 deletions

26
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,26 @@
#!/usr/bin/env groovy
node('docker') {
stage('Build') {
docker.image('alpine').inside {
echo 'im building'
sh 'echo "HELLO" > artifact.txt'
stash name: 'thething', includes: 'artifact.txt'
}
}
}
node('docker') {
stage('Test') {
docker.image('redis').withRun { container ->
docker.image('maven').inside("--link ${container.id}:redis") {
unstash 'thething'
sh 'cat artifact.txt'
sh 'ls -lah'
}
}
}
stage('Deploy') {
}
}