Skip to content

Instantly share code, notes, and snippets.

@stephenlauck
Created July 31, 2023 21:14
Show Gist options
  • Save stephenlauck/15841ed4bc40189c33f3847ff435efa7 to your computer and use it in GitHub Desktop.
Save stephenlauck/15841ed4bc40189c33f3847ff435efa7 to your computer and use it in GitHub Desktop.
Simple Jenkinsfile
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Hi, GeekFlare. Starting to build the App.'
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment