• This project
    • Loading...
  • Sign in

André Silva Paulino / CICD-teste

Go to a project
Toggle navigation
  • Projects
  • Groups
  • Snippets
  • Help
Toggle navigation pinning
  • Project
  • Activity
  • Repository
  • Pipelines
  • Graphs
  • Issues 0
  • Merge Requests 0
  • Wiki
  • Network
  • Create a new issue
  • Builds
  • Commits
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • CICD-teste
  • jenkins
  • Jenkinsfile
  • Adicionando mais um estágio no pipeline · af310d1b
    af310d1b Browse Files
    André Silva Paulino authored 2023-03-05 12:37:09 -0300
Jenkinsfile 150 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10
pipeline {
  agent any
  stages {
    stage('Echo') {
      steps {
        sh echo 'Olá, este é um exemplo de um Jenkinsfile!'
      }
    }
  }
}