From 09bb56017b40f51d7ae5f8560b4ed5807db793a5 Mon Sep 17 00:00:00 2001 From: codex Date: Thu, 21 May 2026 16:52:58 -0300 Subject: [PATCH] ci(portal): avoid flaky dind node --- Jenkinsfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 6677827..5cd46e3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -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