• 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 · f49ab00c
    f49ab00c Browse Files
    André Silva Paulino authored 2023-03-05 13:58:13 -0300
Jenkinsfile 568 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
pipeline {
    agent any
    stages {
        stage('Build') {
            steps {
                script {
                   echo "teste de build"
                }
                
            }
        }
        stage('Test') {
            steps {
                script {
                   echo "teste de test"
                }
                
            }
          }
        
        stage('Deploy') {
            steps {
                script {
                   echo "teste de deploy"
                }
                
            }
        }
     }
}