Skip to content

Commit a6d7db0

Browse files
authored
Update Jenkinsfile
1 parent 0695ab3 commit a6d7db0

1 file changed

Lines changed: 14 additions & 0 deletions

File tree

Jenkinsfile

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,19 @@ pipeline {
77
echo 'first stage'
88
}
99
}
10+
stage('two') {
11+
steps {
12+
sh 'echo test > log.txt'
13+
14+
archiveArtifacts artifacts: 'log.txt', followSymlinks: false
15+
}
16+
}
17+
stage('three') {
18+
steps {
19+
sh 'echo test > three.txt'
20+
21+
archiveArtifacts artifacts: 'three.txt', followSymlinks: false
22+
}
23+
}
1024
}
1125
}

0 commit comments

Comments
 (0)