ci(portal): avoid flaky dind node
This commit is contained in:
parent
ce7ecfec21
commit
09bb56017b
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
@ -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
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user