ci(portal): avoid flaky dind node

This commit is contained in:
codex 2026-05-21 16:52:58 -03:00
parent ce7ecfec21
commit 09bb56017b

8
Jenkinsfile vendored
View File

@ -23,6 +23,7 @@ spec:
- titan-06
- titan-12
- titan-14
- titan-19
preferredDuringSchedulingIgnoredDuringExecution:
- weight: 100
preference:
@ -702,7 +703,12 @@ PY
post {
always {
script {
def props = fileExists('build.env') ? readProperties(file: 'build.env') : [:]
def props = [:]
try {
props = fileExists('build.env') ? readProperties(file: 'build.env') : [:]
} catch (Exception ignored) {
props = [:]
}
echo "Build complete for ${props['SEMVER'] ?: env.VERSION_TAG}"
}
archiveArtifacts artifacts: 'build/**, frontend/coverage/**, frontend/test-results/**, frontend/playwright-report/**', allowEmptyArchive: true, fingerprint: true