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 12:28:35 -0300
Browse Files
Options
Browse Files
Download
Plain Diff
Commit
d671798c827650b42a6769a2edda94083fd68d2e
d671798c
2 parents
2842c1e9
d0c7e461
Merge branch 'master' of git.adtlab.com.br:andre.paulino/CICD-teste
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
18 deletions
jenkins/jenkinsfile
jenkins/jenkinsfile
deleted
100644 → 0
View file @
2842c1e
pipeline {
agent any
stages {
stage('Echo') {
steps {
echo 'Olá, este é um exemplo de um Jenkinsfile!'
}
}
stage('Escrever') {
steps {
script {
def mensagem = 'O Jenkins é incrível!'
writeFile file: 'mensagem.txt', text: mensagem
}
}
}
}
}
Please
register
or
login
to post a comment