script de shell no pipeline de Jenkins
pipeline {
agent any
stages {
stage('Build')
{
steps
{
sh '''#!/bin/bash
echo shell commands here
'''
}
}
}
}
Biggus Dickus