This repository has been archived on 2023-12-11. You can view files and clone it, but cannot push or open issues or pull requests.
sat-sw-website-legacy/automation/Jenkinsfile

16 lines
187 B
Plaintext
Raw Normal View History

2023-09-12 10:28:39 +02:00
pipeline {
2023-09-12 10:30:34 +02:00
agent {
dockerfile {
dir 'automation'
reuseNode true
2023-09-12 10:28:39 +02:00
}
2023-09-12 10:30:34 +02:00
}
stages {
stage('Deployment') {
steps {
sh 'rsync -h'
}
}
}
2023-09-12 10:28:39 +02:00
}