jenkins: make builds parallel

This commit is contained in:
2025-10-03 11:01:36 +02:00
parent ab5add947d
commit 6b99166501

4
Jenkinsfile vendored
View File

@@ -8,6 +8,8 @@ pipeline {
cron('H/10 * * * *')
}
stages {
stage('Parallel Build and Deploy') {
parallel {
stage('Android') {
stages {
stage('Build') {
@@ -40,4 +42,6 @@ pipeline {
}
}
}
}
}
}