Toggle navigation
Toggle navigation
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
Authored by
André Silva Paulino
2023-03-05 13:12:43 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
ac6ffab7afc7e94cc1eb49e2da42fdc1a4fed702
ac6ffab7
1 parent
06a5a659
Adicionando mais um estágio no pipeline
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
jenkins/Jenkinsfile
jenkins/Jenkinsfile
View file @
ac6ffab
...
...
@@ -3,18 +3,27 @@ pipeline {
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"
}
}
}
}
...
...
Please
register
or
login
to post a comment