jenkinsfile

master
Araozu 2023-10-25 20:51:20 -05:00
parent 45bbfa0ebd
commit ce678fc333
2 changed files with 18 additions and 0 deletions

13
Jenkinsfile.groovy Normal file
View File

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

View File

@ -16,5 +16,10 @@ class Cat
```thp ```thp
val option = Some("GAAA")
val Some(value) = option
val colors = Array("red", "green", "blue")
val Array()
``` ```