add Jenkinsfile that triggers the frontend and backend pipeline
This commit is contained in:
13
Jenkinsfile
vendored
Normal file
13
Jenkinsfile
vendored
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user