diff --git a/Jenkinsfile-basic b/Jenkinsfile-basic new file mode 100644 index 0000000..d4dfc30 --- /dev/null +++ b/Jenkinsfile-basic @@ -0,0 +1,28 @@ +#!/usr/bin/env groovy + +pipeline { + agent none + stages { + stage('build') { + steps { + script { + echo "Building the application..." + } + } + } + stage('test') { + steps { + script { + echo "Testing the application..." + } + } + } + stage('deploy') { + steps { + script { + echo "Deploying the application..." + } + } + } + } +}