build mondrianwifi
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
nyyu 2021-08-28 11:28:00 +02:00
commit e2c60c6d0e
3 changed files with 96 additions and 0 deletions

69
.drone.yml Normal file
View file

@ -0,0 +1,69 @@
---
kind: pipeline
type: exec
name: mondrianwifi
platform:
os: linux
arch: amd64
steps:
- name: sync
commands:
- source $DRONE_HOME/${DRONE_STAGE_NAME}.env
- cd $work
- repo init -u git://github.com/LineageOS/android.git -b lineage-$version
- mkdir -p .repo/local_manifests
- cp $DRONE_HOME/$device.xml .repo/local_manifests/roomservice.xml
- repo sync -q -c -j 6 --fail-fast --force-sync --no-tags
- name: build
shell: /bin/bash
commands:
- source $DRONE_HOME/${DRONE_STAGE_NAME}.env
- cd $work
- . build/envsetup.sh
- lunch lineage_$device-userdebug
- mka bacon -j8
- name: copy
commands:
- source $DRONE_HOME/${DRONE_STAGE_NAME}.env
- cd $work
- rm -f $httpdir/lineage-$version-*-UNOFFICIAL-$device.zip{,.md5sum}
- mv -f out/target/product/$device/lineage-$version-*-UNOFFICIAL-$device.zip{,.md5sum} $httpdir/
- ls -lh $httpdir/lineage-$version-*-UNOFFICIAL-$device.zip{,.md5sum}
- name: clean
commands:
- source $DRONE_HOME/${DRONE_STAGE_NAME}.env
- cd $work
- rm -f out/target/product/$device/lineage-$version-*-UNOFFICIAL-$device.zip_* out/target/product/$device/lineage_$device-ota-eng.*.zip
trigger:
event:
- push
- custom
- cron
---
kind: pipeline
type: exec
name: mondrianwifi-publish
platform:
os: linux
arch: amd64
steps:
- name: publish
commands:
- source $DRONE_HOME/mondrianwifi.env
- cd $httpdir
- mv lineage-$version-*-UNOFFICIAL-$device.zip{,.md5sum} $publishdir/
- ls -lh $publishdir/
trigger:
event:
- promote

5
mondrianwifi.env Normal file
View file

@ -0,0 +1,5 @@
version=18.1
work=/drone/lineage-$version
device=mondrianwifi
httpdir=/srv/http/drone
publishdir=/mnt/android/lineage/$version/$device

22
mondrianwifi.xml Normal file
View file

@ -0,0 +1,22 @@
<?xml version="1.0" encoding="UTF-8"?>
<manifest>
<remote name="nyyu" fetch="https://git.nyyu.dev" />
<project name="lineage/android_device_samsung_mondrianwifi" path="device/samsung/mondrianwifi" remote="nyyu" />
<project name="lineage/android_kernel_samsung_msm8974" path="kernel/samsung/msm8974_tab" remote="nyyu" revision="lineage-18.1_pro" />
<project name="lineage/android_vendor_samsung_mondrianwifi" path="vendor/samsung/mondrianwifi" remote="nyyu" />
<project name="LineageOS/android_device_samsung_msm8974-common" path="device/samsung/msm8974-common" remote="github" />
<project name="LineageOS/android_device_samsung_qcom-common" path="device/samsung/qcom-common" remote="github" />
<project name="LineageOS/android_hardware_samsung" path="hardware/samsung" remote="github" />
<project name="LineageOS/android_hardware_sony_timekeep" path="hardware/sony/timekeep" remote="github" />
<project name="TheMuppets/proprietary_vendor_samsung" path="vendor/samsung" remote="github" />
<remove-project name="platform/prebuilts/clang/host/darwin-x86" />
<remove-project name="LineageOS/android_prebuilts_gcc_darwin-x86_aarch64_aarch64-linux-android-4.9" />
<remove-project name="LineageOS/android_prebuilts_gcc_darwin-x86_arm_arm-linux-androideabi-4.9" />
<remove-project name="platform/prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1" />
<remove-project name="LineageOS/android_prebuilts_gcc_darwin-x86_x86_x86_64-linux-android-4.9" />
<remove-project name="platform/prebuilts/gdb/darwin-x86" />
<remove-project name="platform/prebuilts/go/darwin-x86" />
<remove-project name="platform/prebuilts/python/darwin-x86/2.7.5" />
</manifest>