Compare commits

...

2 Commits
18.4.0 ... main

Author SHA1 Message Date
dfe1899813 try jenkins
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Failing after 6m59s
2025-03-06 16:06:38 +01:00
2c40597de6 try jenkins
Some checks failed
Build Multiarch Container Image / call-reusable-workflow (push) Has been cancelled
2025-03-06 16:03:07 +01:00

12
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,12 @@
pipeline {
agent {
any { image 'node:22.14.0-alpine3.21' }
}
stages {
stage('Test') {
steps {
sh 'node --eval "console.log(process.platform,process.env.CI)"'
}
}
}
}