jenkinsfile
This commit is contained in:
parent
45bbfa0ebd
commit
ce678fc333
13
Jenkinsfile.groovy
Normal file
13
Jenkinsfile.groovy
Normal 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'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -16,5 +16,10 @@ class Cat
|
|||||||
|
|
||||||
|
|
||||||
```thp
|
```thp
|
||||||
|
val option = Some("GAAA")
|
||||||
|
val Some(value) = option
|
||||||
|
|
||||||
|
val colors = Array("red", "green", "blue")
|
||||||
|
val Array()
|
||||||
|
|
||||||
```
|
```
|
||||||
|
Loading…
Reference in New Issue
Block a user