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 11:58:44 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
3701ec1f14b492939d4916cb255b590cb5196c9e
3701ec1f
1 parent
8b3a7965
Escrevendo um jenkinfile para exibir uma mensagem
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
jenkins/jenkinsfile
jenkins/jenkinsfile
View file @
3701ec1
1
+
pipeline {
2
+
agent any
3
+
stages {
4
+
stage('Echo') {
5
+
steps {
6
+
echo 'Olá, este é um exemplo de um Jenkinsfile!'
7
+
}
8
+
}
9
+
}
10
+
}
11
+
12
+
Please
register
or
login
to post a comment