1 Star 0 Fork 12

NiuTao/ros-porting-tools

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
check-build-status-in-obs.sh 1.60 KB
一键复制 编辑 原始数据 按行查看 历史
NiuTao 提交于 2023-06-08 20:17 . fix: bug fix
#!/bin/bash
. base.sh
USER_INFO="$1"
ROS_CHECK_LIST=${ROOT}/ros-check.list
ROS_BUILD_STATUS=${OUTPUT}/ros-build-status.list
prepare()
{
if [ ! -f ${ROS_PKG_LIST} ]
then
error_log "Can not find ${ROS_PKG_LIST}, you can use get-repo-list.sh to create it"
exit 1
fi
if [ ! -f ${ROS_CHECK_LIST} ]
then
error_log "Please give the ${ROS_CHECK_LIST}"
exit 1
fi
if [ "$USER_INFO" == "" ]
then
error_log "please give user info, like:"
error_log "$0 user:pass"
exit 1
fi
>${ROS_BUILD_STATUS}
}
main()
{
prepare
info_log "Start to analyse ros-pkg."
cd ${ROS_OUTPUT_TMP}
rm -f src
prj_path=`echo ${OBS_PROJECT} | sed -e "s#:#:/#g"`
wget http://119.3.219.20:82/${prj_path}/standard_x86_64/src
grep "\.src.rpm" src | awk -F"href=\"" '{print $2}' | cut -d'"' -f1 | sed -e "s/\-[[:digit:]]\+\..*//g" >.build_succeeded
while read project
do
info_log "start check project $project"
p=`grep -P "^$project\t" ${ROS_PKG_LIST}`
if [ $? -ne 0 ]
then
error_log "project $project not found."
echo -e "$project\tnot_found" >>${ROS_BUILD_STATUS}
continue
fi
pkg=`echo "$p" | awk '{print $2}'`
rm -f ${OUTPUT}/_status
wget --no-check-certificate -q -c -P ${OUTPUT} https://${USER_INFO}@${OBS_DOMAIN}/build/$OBS_PROJECT/standard_x86_64/x86_64/$pkg:$project/_status
if [ $? -ne 0 ]
then
error_log "get status of package $project fail"
echo -e "$project\tunkown" >>${ROS_BUILD_STATUS}
continue
fi
status=`grep "code" ${OUTPUT}/_status | cut -d'"' -f4`
echo -e "$project\t$status" >>${ROS_BUILD_STATUS}
done < ${ROS_CHECK_LIST}
info_log "get status of projects ok"
}
main $*
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/will_niutao/ros-porting-tools.git
[email protected]:will_niutao/ros-porting-tools.git
will_niutao
ros-porting-tools
ros-porting-tools
master

搜索帮助