SRE-3892 cq: install dependencies while building docker image - #18684
Open
grom72 wants to merge 4 commits into
Open
SRE-3892 cq: install dependencies while building docker image#18684grom72 wants to merge 4 commits into
grom72 wants to merge 4 commits into
Conversation
|
Errors are Unable to load ticket data |
grom72
force-pushed
the
grom72/sre3892-install-deps
branch
7 times, most recently
from
July 22, 2026 17:01
29d71c4 to
72d825d
Compare
Signed-off-by: Tomasz Gromadzki <tomasz.gromadzki@hpe.com> Priority: 2 Cancel-prev-build: false Skip-python-bandit: true Skip-build-el8-gcc: true Skip-build-leap15-gcc: true Skip-unit-test: true Skip-unit-test-memcheck: true Skip-test-el-9-rpms: true Skip-test-leap-15-rpms: true Skip-func-vm-test: true Skip-func-hw-test: true Skip-build-el8-gcc: true Skip-build-leap15-gcc: true Skip-unit-tests:true Skip-NLT: true Skip-fault-injection-test: true
Signed-off-by: Tomasz Gromadzki <tomasz.gromadzki@hpe.com> Priority: 2 Cancel-prev-build: false Skip-python-bandit: true Skip-build-el8-gcc: true Skip-build-leap15-gcc: true Skip-unit-test: true Skip-unit-test-memcheck: true Skip-test-el-9-rpms: true Skip-test-leap-15-rpms: true Skip-func-vm-test: true Skip-func-hw-test: true Skip-build-el8-gcc: true Skip-build-leap15-gcc: true Skip-unit-tests:true Skip-NLT: true Skip-fault-injection-test: true
grom72
force-pushed
the
grom72/sre3892-install-deps
branch
from
July 22, 2026 18:41
72d825d to
6eb8bc6
Compare
Collaborator
|
Test stage Functional on EL 9 completed with status FAILURE. https://jenkins-3.daos.hpc.amslabs.hpecorp.net//job/daos-stack/job/daos/view/change-requests/job/PR-18684/12/execution/node/874/log |
grom72
force-pushed
the
grom72/sre3892-install-deps
branch
from
July 22, 2026 18:50
6eb8bc6 to
bc77452
Compare
DAOS_RELVAL is needed only for DAOS build. STAGE_NAME is not needed for dependency installation. REPO_SPEC is no longer needed. Signed-off-by: Tomasz Gromadzki <tomasz.gromadzki@hpe.com> Priority: 2 Cancel-Previous-Builds: false Skip-func-hardware-test: true Skip-func-hw-test: true
grom72
force-pushed
the
grom72/sre3892-install-deps
branch
from
July 22, 2026 21:25
bc77452 to
9154a77
Compare
grom72
marked this pull request as ready for review
July 22, 2026 21:25
grom72
requested review from
JohnMalmberg,
daltonbohning,
janekmi,
phender and
ryon-jensen
July 22, 2026 21:25
Collaborator
|
Test stage Functional on EL 9 completed with status FAILURE. https://jenkins-3.daos.hpc.amslabs.hpecorp.net//job/daos-stack/job/daos/view/change-requests/job/PR-18684/14/execution/node/1386/log |
…all-deps Signed-off-by: Tomasz Gromadzki <tomasz.gromadzki@hpe.com> Skip-func-hardware-test: true Skip-func-hw-test: true
grom72
force-pushed
the
grom72/sre3892-install-deps
branch
from
July 23, 2026 08:47
af6aecb to
a788c4c
Compare
8 tasks
phender
reviewed
Jul 23, 2026
phender
approved these changes
Jul 25, 2026
daltonbohning
approved these changes
Jul 31, 2026
grom72
requested review from
a team
and removed request for
JohnMalmberg,
janekmi,
jolivier23 and
ryon-jensen
August 17, 2026 10:23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Optimize Docker-based DAOS dependency installation with RUN --mount and simplified build variables
Description
This PR refactors the DAOS build infrastructure to move dependency installation into Docker layer phases, improving build efficiency and simplifying the variable management chain.
Problem
Dependency installation (install_deps.sh) was executed outside Docker in the CI pipeline, requiring manual invocation and repeats the same procedure in every docker container
Unused environment variables (DAOS_RELVAL, REPO_SPEC, CHROOT_NAME) cluttered the build pipeline
Solution
Move dependency installation into Docker:
Consolidate version definitions: Move daos_version and daos_release directly into daos.sh (their only consumer), eliminating unnecessary intermediate dependencies
Simplify variable management: Remove unused variables and their definitions
Requires:
Steps for the author:
After all prior steps are complete: