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

16 lines
186 B
Groovy

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