This commit is contained in:
Dennis Coyle 2018-04-25 14:04:12 -04:00
parent 6e48f1de10
commit 9f67b25694

40
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,40 @@
node('node') {
try {
stage 'Checkout'
checkout scm
stage 'Test'
sh """#!/bin/bash -e
make build-dev-deps lint
"""
stage 'Build Docker'
echo 'Build'
stage 'Deploy'
echo 'Deploy'
stage 'Cleanup'
echo 'prune and cleanup'
}
catch (err) {
currentBuild.result = "FAILURE"
/*
mail body: "project build error is here: ${env.BUILD_URL}" ,
from: 'build@storj.io',
replyTo: 'build@storj.io',
subject: 'project build failed',
to: "${env.CHANGE_AUTHOR_EMAIL}"
throw err
*/
}
}