diff --git a/Jenkinsfile b/Jenkinsfile index a2e11ac..49a609b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,11 +1,24 @@ -Jenkinsfile (Declarative Pipeline) /* Requires the Docker Pipeline plugin */ +/*Jenkins Docker Pipeline plugin on the Windows host can't execute Linux Docker images due to a bug. Therefore updating the pipeline*/ +/* pipeline { agent { docker { image 'python:3.10.7-alpine' } } stages { stage('build') { steps { sh 'python --version' + echo "on enable-jenkins branch" + } + } + } +} +*/ +pipeline { + agent none + stages { + stage('build') { + steps { + echo "Hello World on enable-jenkins branch" } } } diff --git a/README.md b/README.md index 41149d3..5fff62a 100644 --- a/README.md +++ b/README.md @@ -15,5 +15,7 @@ by providing them with a virtual canvas and Tkinter is the GUI package.
Found this old collection and thought of sharing it here! +Update : Mar 17, 2023 +Adding JenkinsFile to this Repo, trying out MultiBranch Pipeline!