代码拉取完成,页面将自动刷新
同步操作将从 replugin/RePlugin 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
#!/bin/bash
export RP_BASE_DIR=$(cd "$(dirname "$0")"; pwd)
export TARGET_PROJECTS=(
replugin-host-gradle
replugin-host-library
replugin-plugin-gradle
replugin-plugin-library
)
__gradle_exec(){ if [[ -x gradlew ]];then ./gradlew ${@}; else gradle ${@}; fi; }
__rp_deploy_project(){
[[ ! -d ${1} ]] && echo ">>> INVALID ${1}!!! <<<" && return
# execute deploying
echo ">>> ${1} <<<" && cd ${1} && __gradle_exec -p ${1} clean bintrayUpload
# revert changed files
git checkout ${1}
}
rp_revert_AppConstant(){
git status -s | sed s/^...// | grep '/AppConstant.groovy' | git checkout ${f}
}
rp_deploy(){
local current=`pwd` && cd ${RP_BASE_DIR}
# revert AppConstant.groovy
rp_revert_AppConstant
# saving all changes: git stash save "saving stash for deploying!!!"
# deploy
for p in ${TARGET_PROJECTS}; do __rp_deploy_project ${RP_BASE_DIR}/${p}; done
# revert local changes: git revert --hard HEAD; git stash pop
rp_revert_AppConstant
# back
cd ${current}
}
rp_test(){
local projects=(
# replugin-sample/host/app
replugin-sample/host
# replugin-sample/plugin/plugin-demo1/app
replugin-sample/plugin/plugin-demo1
# replugin-sample/plugin/plugin-demo2/app
replugin-sample/plugin/plugin-demo2
# replugin-sample/plugin/plugin-demo3-kotlin/app
replugin-sample/plugin/plugin-demo3-kotlin
# replugin-sample/plugin/plugin-webview/app
replugin-sample/plugin/plugin-webview
# replugin-sample-extra/fresco/FrescoHost/app
replugin-sample-extra/fresco/FrescoHost
# replugin-sample-extra/fresco/FrescoPlugin/app
replugin-sample-extra/fresco/FrescoPlugin
)
local log=${RP_BASE_DIR}/build/rp_test.log && [[ -f $log ]] && rm -f $log && touch $log
local current=`pwd`
for p in ${projects}; do
local p=${RP_BASE_DIR}/${p}
echo -e ">>> BUILDING ${RP_BASE_DIR}/${p}"
cd ${p} && { __gradle_exec -p ${p} clean asDebug }
ls -l ${p}/app/build/outputs/apk
done
cd ${current}
}
# grep --exclude-dir={.bzr,CVS,.git,.hg,.svn,.idea,build,.gradle} -inr '2\.3\.0' .
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。