Change file Jenkins to test plugin Pipeline: Stage View

This commit is contained in:
2026-02-05 19:32:38 +02:00
parent 552b8716db
commit 7cda28fac3

15
Jenkinsfile vendored
View File

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