File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -12,14 +12,21 @@ jobs:
12
12
FLAVOR : ' eng'
13
13
TEST_BUILD : ' true'
14
14
CHANGELOG : |
15
- - Initial Official Test Build
15
+ - checking circle ci
16
16
working_directory : /home/builder/pitchblack
17
17
steps :
18
18
- run :
19
19
name : AIO Build
20
20
command : |
21
21
wget -q https://raw.githubusercontent.com/PitchBlackRecoveryProject/vendor_utils/pb/build.sh
22
22
source build.sh
23
+ export BUILDFILE=$(find $(pwd)/out/target/product/${CODENAME}/PBRP*.zip 2>/dev/null)
24
+ export BUILDIMG=$(find $(pwd)/out/target/product/${CODENAME}/recovery.img 2>/dev/null)
25
+ export UPLOAD_PATH=$(pwd)/out/target/product/${CODENAME}/upload/
26
+ mkdir ${UPLOAD_PATH}
27
+ cp $BUILDFILE $UPLOAD_PATH
28
+ cp $BUILDIMG $UPLOAD_PATH
29
+ ghr -t ${GITHUB_TOKEN} -u ${CIRCLE_PROJECT_USERNAME} -r ${CIRCLE_PROJECT_REPONAME} -n "PBRP Release for $(echo $CODENAME)" -b "PBRP $(echo $VERSION)" -c ${CIRCLE_SHA1} -delete ${VERSION} ${UPLOAD_PATH}
23
30
workflows :
24
31
version : 2.1
25
32
build_and_test :
Original file line number Diff line number Diff line change @@ -112,6 +112,7 @@ TW_EXCLUDE_TWRPAPP := true
112
112
TW_HAS_EDL_MODE := true
113
113
TW_USE_TOOLBOX := true
114
114
TW_SKIP_COMPATIBILITY_CHECK := true
115
+ PB_DISABLE_DEFAULT_DM_VERITY := true
115
116
PB_TORCH_PATH := "/sys/class/leds/led:torch_1"
116
117
# Debug
117
118
TWRP_INCLUDE_LOGCAT := true
You can’t perform that action at this time.
0 commit comments