scroll/Jenkinsfile
Timothy J. Warren cf0a24ae2f
Some checks failed
timw4mail/scroll/pipeline/head There was a failure building this commit
Don't try to collect test coverage for bun on CI
2025-01-23 16:03:26 -05:00

30 lines
391 B
Groovy

pipeline {
agent none
stages {
stage('bun') {
agent {
docker {
image 'oven/bun:1-debian'
args '-u root --privileged'
}
}
steps {
sh 'bun test'
}
}
stage('deno') {
agent {
docker {
image 'rust:alpine'
args '-u root --privileged'
}
}
steps {
sh 'apk add just'
sh 'apk add deno'
sh 'just deno-test'
}
}
}
}