Jenkinsfile 251 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 teste > teste.txt' sh 'mkdir teste2' sh 'mv teste.txt teste2/' } } } }