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
    Update Jenkinsfile · d77d5380
    Israel Amaral committed 2021-05-27 18:07:08 -0300
    d77d5380 Browse Files
Jenkinsfile 259 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13
pipeline {
    agent { label 'Slave02' }
    stages {
        stage('build') {
            steps {
                sh 'echo teste2 > teste2.txt'
                sh 'mkdir teste2'
                sh 'mv teste2.txt teste2/'
            }
        }
    }
    
}