Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 99b2cec commit 10ad507Copy full SHA for 10ad507
Jenkinsfile
@@ -1,10 +1,5 @@
1
-
2
-pipeline {
3
- agent any
4
- stages {
5
- stage('Build') {
6
- steps {
7
+node {
+ stage('Build') {
8
echo "checkout from SCM"
9
10
git 'https://github.com/webweb04/python-scripts.git'
@@ -30,17 +25,11 @@ pipeline {
30
25
31
26
// Archive the build output artifacts.
32
27
archiveArtifacts artifacts: 'output/*.txt', excludes: 'output/*.md'
33
- }
34
35
- stage('Test') {
36
37
- //
38
39
40
- stage('Deploy') {
41
42
43
44
28
+ }
29
+ stage('Test') {
+ //
+ stage('Deploy') {
45
}
46
0 commit comments