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
Groovy

pipeline {
agent any
stages {
stage('test') {
steps {
sh '/bin/true'
sh 'ls -la'
}
}
}
}