From 9ac6203708eb51c5e92e321cdf2d142db1607ab9 Mon Sep 17 00:00:00 2001 From: alichinese Date: Tue, 15 Jul 2025 15:54:49 +0800 Subject: [PATCH] sdk-dockerfile: add ruamel.yaml python lib * the sdk-ci need ruamel.yaml Signed-off-by: alichinese --- .oebuild/dockerfile/openeuler-sdk/Dockerfile_CI | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.oebuild/dockerfile/openeuler-sdk/Dockerfile_CI b/.oebuild/dockerfile/openeuler-sdk/Dockerfile_CI index 72521c3106e..189c7139b50 100644 --- a/.oebuild/dockerfile/openeuler-sdk/Dockerfile_CI +++ b/.oebuild/dockerfile/openeuler-sdk/Dockerfile_CI @@ -39,7 +39,7 @@ RUN echo "PATH=$PATH:/home/${user}/.local/bin" >> ${HOME}/.bashrc \ RUN set -eux; \ pip3 install PyYaml python-git requests python-jenkins paramiko json2table \ gitlint sphinx_tabs sphinx_multiversion sphinx-rtd-theme Sphinx==5.1.1 \ -pyyaml pygit gitpython -i https://pypi.tuna.tsinghua.edu.cn/simple +pyyaml pygit gitpython ruamel.yaml -i https://pypi.tuna.tsinghua.edu.cn/simple VOLUME /home/${user}/.jenkins VOLUME ${AGENT_WORKDIR} -- Gitee