Jenkinsfile 256 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 pipeline { agent { label 'Slave02' } stages { stage('build') { steps { sh 'echo teste2 > teste2.txt' //sh 'mkdir teste2' sh 'mv teste2.txt teste2/' } } } }