thp-lang.org/Jenkinsfile.groovy
2023-10-25 20:53:43 -05:00

15 lines
303 B
Groovy

pipeline {
agent any
environment {
PATH = "/var/lib/jenkins/.bun/bin:${env.PATH}"
}
stages {
stage('Test') {
steps {
echo 'Testing...'
echo 'Is Bun working?...'
sh 'bun --version'
}
}
}
}