Skip to content

Commit

Permalink
MDBF-940: Steps with warnings should flag the entire build
Browse files Browse the repository at this point in the history
If any of the three docker-library scripts return a status of 2 and are marked with warnings,
the entire build instance should be marked as completed with warnings.
This way, we can easily inspect which builds are in this state
  • Loading branch information
RazvanLiviuVarzaru authored and cvicentiu committed Feb 5, 2025
1 parent e23dc1b commit 31ea89b
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions master-nonlatent/master.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -707,6 +707,7 @@ f_dockerlibrary.addStep(
'./docker-library-build.sh "%(prop:tarbuildnum)s" "%(prop:mariadb_version)s" "%(prop:parentbuildername)s" "%(prop:revision)s" "%(prop:branch)s"'
),
],
warnOnWarnings=True,
)
)
f_dockerlibrary.addStep(
Expand All @@ -720,6 +721,7 @@ f_dockerlibrary.addStep(
'./docker-library-test.sh "%(prop:tarbuildnum)s" "%(prop:parentbuildername)s"'
),
],
warnOnWarnings=True,
)
)
f_dockerlibrary.addStep(
Expand All @@ -733,6 +735,7 @@ f_dockerlibrary.addStep(
'./docker-library-manifest.sh "%(prop:tarbuildnum)s" "%(prop:mariadb_version)s" "%(prop:parentbuildername)s" "%(prop:revision)s" "%(prop:branch)s" "%(prop:push_containers)s"'
),
],
warnOnWarnings=True,
)
)
f_dockerlibrary.addStep(
Expand Down

0 comments on commit 31ea89b

Please sign in to comment.