Attempt to setup CI build

This commit is contained in:
Timothy Warren 2023-11-22 11:37:31 -05:00
parent 5cd59ba943
commit 295142779b
1 changed files with 29 additions and 0 deletions

29
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,29 @@
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'
}
}
}
}