forked from ROM-builders/temporary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build_rom.sh
16 lines (14 loc) · 924 Bytes
/
build_rom.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# sync rom
repo init --depth=1 --no-repo-verify -u https://github.com/crdroidandroid/android.git -b 12.1 -g default,-mips,-darwin,-notdefault
git clone https://github.com/darknius20/local_manifest.git --depth 1 -b crdroid-12.1 .repo/local_manifests
repo sync -c --no-clone-bundle --no-tags --optimized-fetch --prune --force-sync -j8
# build rom
. build/envsetup.sh
export ALLOW_MISSING_DEPENDENCIES=true
export SELINUX_IGNORE_NEVERALLOWS=true
export KBUILD_BUILD_USER=Darknius
export BUILD_HOSTNAME=Lightness
export TZ=Asia/Jakarta #put before last build command
brunch juice
# upload rom (if you don't need to upload multiple files, then you don't need to edit next line)
rclone copy out/target/product/$(grep unch $CIRRUS_WORKING_DIR/build_rom.sh -m 1 | cut -d ' ' -f 2 | cut -d _ -f 2 | cut -d - -f 1)/*.zip cirrus:$(grep unch $CIRRUS_WORKING_DIR/build_rom.sh -m 1 | cut -d ' ' -f 2 | cut -d _ -f 2 | cut -d - -f 1) -P