test-repo/Jenkinsfile

16 lines
186 B
Plaintext
Raw Normal View History

2023-05-12 19:13:38 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
2023-05-12 20:40:57 +02:00
echo 'Hello World from app1 on Friday 2'
2023-05-12 20:05:41 +02:00
sh '''
#!/bin/bash
ls -la
pwd
'''
2023-05-12 19:13:38 +02:00
}
}
}
2023-05-12 19:47:23 +02:00
}