Files
jenkins_projects/Jenkinsfile

20 lines
471 B
Groovy

pipeline {
agent any
stages {
stage('Checkout') {
steps {
git credentialsId: 'cheie-gitea-mac', url: 'git@gitea.dev.bodnarescu.ro:marius.grosu/jenkins_projects.git'
}
}
stage('Test Connection') {
steps {
sh 'ping -c 2 google.com'
}
}
stage('Finalize') {
steps {
echo 'Totul e verde!'
}
}
}
}