Skip to content

Instantly share code, notes, and snippets.

View ssxm9's full-sized avatar

Satyabrata Mishra ssxm9

View GitHub Profile
pipeline {
// run on jenkins nodes tha has java 8 label
agent { label 'java8' }
// global env variables
environment {
EMAIL_RECIPIENTS = 'mahmoud.romeh@test.com'
}
stages {
stage('Build with unit testing') {