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:56:09 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c955c743218988cc19043032f374bbc3696be3fc
c955c743
1 parent
ac6ffab7
Adicionando mais um estágio no pipeline
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
4 deletions
jenkins/Jenkinsfile
jenkins/Jenkinsfile
View file @
c955c74
...
...
@@ -4,7 +4,7 @@ pipeline {
stage('Build') {
steps {
script {
echo "teste de build"
sh
echo "teste de build"
}
}
...
...
@@ -12,18 +12,19 @@ pipeline {
stage('Test') {
steps {
script {
echo "teste de test"
sh
echo "teste de test"
}
}
}
}
stage('Deploy') {
steps {
script {
echo "teste de deploy"
sh
echo "teste de deploy"
}
}
}
}
}
...
...
Please
register
or
login
to post a comment