pipeline { agent any stages { stage('Build') { steps { sh 'echo "Rulez din Gitea!"' sh 'ls -la' } } } }