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

16 lines
186 B
Groovy

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