-
Notifications
You must be signed in to change notification settings - Fork 15
/
deploy.sh
67 lines (59 loc) · 1.95 KB
/
deploy.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
#!/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' .