test-repo/Jenkinsfile
Robert Vokac cde1087d76
a
2023-05-12 20:44:06 +02:00

16 lines
191 B
Groovy

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