jenkins: add step to build devenv shell

This commit is contained in:
2025-10-03 11:04:27 +02:00
parent 6b99166501
commit 6415756412

5
Jenkinsfile vendored
View File

@@ -8,6 +8,11 @@ pipeline {
cron('H/10 * * * *') cron('H/10 * * * *')
} }
stages { stages {
stage('Build devenv shell') {
steps {
sh 'devenv shell'
}
}
stage('Parallel Build and Deploy') { stage('Parallel Build and Deploy') {
parallel { parallel {
stage('Android') { stage('Android') {