1
0
mirror of https://github.com/Bayselonarrend/OpenIntegrations.git synced 2025-11-25 22:12:29 +02:00
Files
OpenIntegrations/ci/big_tests
Anton Titovets 8f5694a5d3 Fastfix
2025-10-21 21:33:05 +03:00

80 lines
2.5 KiB
Plaintext
Vendored

pipeline {
agent {
label 'windows'
}
stages {
stage('OpenIntegrations - Test (1C, Win, RU)') {
steps {
script {
try {
build job: 'OPITest/OpiFullTest/Opi1cWinRu', propagate: false, wait: true
} catch (Exception e) {
echo "Stage failed, but continuing: ${e.message}"
}
}
}
}
stage('OpenIntegrations - Test (1C, Win, EN)') {
steps {
script {
try {
build job: 'OPITest/OpiFullTest/Opi1cWinEn', propagate: false, wait: true
} catch (Exception e) {
echo "Stage failed, but continuing: ${e.message}"
}
}
}
}
stage('OpenIntegrations - Test (CLI, Win, RU)') {
steps {
script {
try {
build job: 'OPITest/OpiFullTest/OpiCliWinRu', propagate: false, wait: true
} catch (Exception e) {
echo "Stage failed, but continuing: ${e.message}"
}
}
}
}
stage('OpenIntegrations - Test (CLI, Win, EN)') {
steps {
script {
try {
build job: 'OPITest/OpiFullTest/OpiCliWinEn', propagate: false, wait: true
} catch (Exception e) {
echo "Stage failed, but continuing: ${e.message}"
}
}
}
}
stage('OpenIntegrations - Test (CLI, Deb, RU)') {
steps {
script {
try {
build job: 'OPITest/OpiFullTest/OpiCliDebRu', propagate: false, wait: true
} catch (Exception e) {
echo "Stage failed, but continuing: ${e.message}"
}
}
}
}
stage('OpenIntegrations - Test (CLI, Deb, EN)') {
steps {
script {
try {
build job: 'OPITest/OpiFullTest/OpiCliDebEn', propagate: false, wait: true
} catch (Exception e) {
echo "Stage failed, but continuing: ${e.message}"
}
}
}
}
}
}