add Jenkinsfile that triggers the frontend and backend pipeline

This commit is contained in:
2025-03-05 14:07:48 +00:00
parent 7054bde93f
commit eb7b1cf7dd

13
Jenkinsfile vendored Normal file
View File

@@ -0,0 +1,13 @@
pipeline {
agent any
stages {
stage('Trigger Submodule Pipelines') {
steps {
script {
build job: 'frontend-pipeline', wait: false
build job: 'backend-pipeline', wait: false
}
}
}
}
}