Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View ericlong's full-sized avatar

Eric Long ericlong

  • CloudBees
  • Austin, TX
View GitHub Profile
@ericlong
ericlong / JenkinsFile1
Created August 29, 2017 20:26
Let's Build a Jenkins Pipeline
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Hello from Build'
}
}
stage('Test') {
steps {