Skip to content

Instantly share code, notes, and snippets.

View je-poy's full-sized avatar
🏠
Working from home

Jeff je-poy

🏠
Working from home
View GitHub Profile
@teeks99
teeks99 / Jenkinsfile
Created June 29, 2018 15:02
Jenkinsfile with e-mail
pipeline {
agent any
stages {
stage('Build'){
steps {
echo "Running job: ${env.JOB_NAME}\nbuild: ${env.BUILD_ID} - ${env.BUILD_URL}\nblue ocean: ${env.RUN_DISPLAY_URL}"
}
}
}