Attempt to setup CI build
This commit is contained in:
parent
5cd59ba943
commit
295142779b
29
Jenkinsfile
vendored
Normal file
29
Jenkinsfile
vendored
Normal 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'
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user