第一個Shell指令碼-lint檢查以及報告收集

來源:互聯網
上載者:User
作用

在不需要開發修改android項目設定檔的情況下,執行Android lint檢查,檢查完後,將各個aar包下的檢查結果從遠程機器copy到節點機器上來。 源碼

#!/bin/sh#用於Android Lint檢查項目中,將構建任務中的lint檔案copy到當前job中#從pmo機器中將所有的build檔案儲存到本地機器上來#lint檔案所在的根目錄work_dir=$1#需要移動到目標目錄target_dir=$2echo "lint來源目錄 : "+$work_direcho "lint將要移動到的目錄 : "+$target_direcho "============================start============="# 清空結果目錄delete_report_dir(){  if [ ! -d $target_dir/report ];then      mkdir $target_dir/report  fi  for dir2del in $target_dir/report/* ; do   if [ -d $dir2del ]; then    rm -rf $dir2del   fi  done}echo "================delete_report_dir_end============"#移動檔案到報告目錄move_dir_lint_file(){  currenDir=$1  for i in `find $currenDir`;do    if [[ "${i##*/}" =~ "lint-results" ]];then      dir_file=$target_dir/report/${currenDir##*/}      # echo "目標存放目錄"+$dir_file      # echo "目標檔案:" + $i      mkdir -p $dir_file      cp -rf $i $dir_file    fi  done}echo "================move_dir_lint_file============"list_alldir(){    for file2 in `ls -a $work_dir`    do        if [ x"$file2" != x"." -a x"$file2" != x".." ];then            if [ -d "$work_dir/$file2" ];then                echo "$work_dir/$file2"                move_dir_lint_file $work_dir/$file2            fi        fi    done}echo "================list_alldir_end============"
相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.