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