Skip to content
  • This project
    • Loading...
  • Sign in

Israel Amaral / app01

Secretaria das cidades   h
Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • app01
  • Jenkinsfile
  • Israel Amaral's avatar
    Upload new file · bca45a2b
    Israel Amaral committed 2021-05-27 17:44:36 -0300
    bca45a2b Browse Files
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/'
            }
        }
    }
}