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

16 lines
186 B
Groovy

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