scroll/Jenkinsfile

30 lines
426 B
Groovy

pipeline {
agent none
stages {
stage('bun') {
agent {
docker {
image 'oven/bun:1-debian'
args '-u root --privileged'
}
}
steps {
sh 'sudo apt install -yyy just'
sh 'just bun-test'
}
}
stage('deno') {
agent {
docker {
image 'denoland/deno'
args '-u root --privileged'
}
}
steps {
sh 'sudo apt install -yyy just'
sh 'just deno-test'
}
}
}
}