test-repo/Jenkinsfile

16 lines
191 B
Plaintext
Raw Permalink Normal View History

2023-05-12 19:13:38 +02:00
pipeline {
agent any
stages {
stage('Hello') {
steps {
2023-05-12 20:44:06 +02:00
echo 'Hello World from app1 on Friday master'
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
}