This repository has been archived on 2023-05-22. You can view files and clone it, but cannot push or open issues/pull-requests.
fvtt-shared-compendia/Jenkinsfile

12 lines
173 B
Plaintext
Raw Normal View History

2022-12-18 16:18:08 +00:00
pipeline {
agent any
stages {
2022-12-18 16:30:35 +00:00
stage('test') {
2022-12-18 16:18:08 +00:00
steps {
sh '/bin/true'
2022-12-18 16:31:18 +00:00
sh 'ls -la'
2022-12-18 16:18:08 +00:00
}
}
}
}