1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-10-08 22:51:57 +02:00
Files
OpenIntegrations/ci/big_floppa
2025-07-06 01:01:25 +03:00

34 lines
767 B
Plaintext
Vendored

pipeline {
agent {
label 'windows'
}
stages {
stage('OpiMain') {
steps {
echo 'Main (OpenIntegrations)'
build job: 'OpiMain', wait: true
}
}
stage('MelezhRelease') {
steps {
echo 'Main + Release (Melezh)'
build job: 'MelezhRelease', wait: true
}
}
stage('OpiRelease') {
steps {
echo 'Release (OpenIntegrations)'
build job: 'OpiRelease', wait: true
}
}
stage('OpiCliTestRu') {
steps {
echo 'CLI Test (OpenIntegrations)'
build job: 'OpiCliTestRu', wait: true
}
}
}
}