test-repo/Jenkinsfile
Robert Vokac bef311216a
All checks were successful
test/test-repo/pipeline/head This commit looks good
a
2023-05-12 20:05:41 +02:00

16 lines
184 B
Groovy

pipeline {
agent any
stages {
stage('Hello') {
steps {
echo 'Hello World from app1 on Friday'
sh '''
#!/bin/bash
ls -la
pwd
'''
}
}
}
}