Skip to content

Commit 7c5bfb5

Browse files
authored
Update Jenkinsfile
1 parent 99a3b6c commit 7c5bfb5

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

Jenkinsfile

+14
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
/* Requires the Docker Pipeline plugin */
2+
/*Jenkins Docker Pipeline plugin on the Windows host can't execute Linux Docker images due to a bug*. Therefore updating the pipeline/
3+
4+
/*
25
pipeline {
36
agent { docker { image 'python:3.10.7-alpine' } }
47
stages {
@@ -10,3 +13,14 @@ pipeline {
1013
}
1114
}
1215
}
16+
*/
17+
pipeline {
18+
agent none
19+
stages {
20+
stage('build') {
21+
steps {
22+
echo "Hello master branch!"
23+
}
24+
}
25+
}
26+
}

0 commit comments

Comments
 (0)