Created
July 31, 2023 21:14
-
-
Save stephenlauck/15841ed4bc40189c33f3847ff435efa7 to your computer and use it in GitHub Desktop.
Simple Jenkinsfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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