forked from SailfishOS-sagit/sailfishos-sagit-ci
-
Notifications
You must be signed in to change notification settings - Fork 0
111 lines (95 loc) · 4.87 KB
/
build.yml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
#=================================================
# Description: Build Android HAL and dhd packages using GitHub Actions
# Lisence: MIT
# Author: 0312birdzhang
#=================================================
name: Build SailfishOS dhd-sagit
on:
repository_dispatch:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
env:
DEVICE: sagit
VENDOR: xiaomi
ANDROID_ROOT: /home/runner/work/hadk_16.0/
SAILFISH_SKD_VERSION: 3.3.0.16
steps:
- name: Checkout
uses: actions/checkout@master
- name: Initialization environment
run: |
sudo apt-get update
sudo apt-get install -y \
openjdk-8-jdk android-tools-adb bc \
bison build-essential curl flex g++-multilib \
gcc-multilib gnupg gperf imagemagick lib32ncurses5-dev \
lib32readline-dev lib32z1-dev libesd0-dev liblz4-tool \
libncurses5-dev libsdl1.2-dev libssl-dev libwxgtk3.0-dev \
libxml2 libxml2-utils lzop pngcrush rsync schedtool \
squashfs-tools xsltproc yasm zip zlib1g-dev git
- name: Download repo bin file
run: |
mkdir -p ~/bin
wget 'https://storage.googleapis.com/git-repo-downloads/repo' -P ~/bin
chmod +x ~/bin/repo
git config --global user.name "Verevka"
git config --global user.email "[email protected]"
- name: Downloading source code
run: |
source hadk.env
mkdir -p $ANDROID_ROOT
cd $ANDROID_ROOT
repo init -u git://github.com/SailfishOS-sagit/android -b hybris-16.0 --depth=1 --no-repo-verify
repo sync --fetch-submodules --force-sync -c --no-clone-bundle --no-tags
- name: Clone device spec source
run: |
source hadk.env
git clone https://github.com/SailfishOS-sagit/android_device_xiaomi_sagit.git $ANDROID_ROOT/device/xiaomi/sagit -b lineage-16.0 --depth=1
git clone https://github.com/SailfishOS-sagit/android_device_xiaomi_msm8998-common.git $ANDROID_ROOT/device/xiaomi/msm8998-common -b hybris-16.0 --depth=1
git clone https://github.com/SailfishOS-sagit/android_kernel_xiaomi_msm8998.git $ANDROID_ROOT/kernel/xiaomi/msm8998 -b ubports --depth=1
rm -rf $ANDROID_ROOT/hybris/hybris-boot
git clone https://github.com/SailfishOS-sagit/hybris-boot.git $ANDROID_ROOT/hybris/hybris-boot -b master
git clone https://github.com/SailfishOS-sagit/android_vendor_xiaomi.git $ANDROID_ROOT/vendor/xiaomi -b lineage-16.0
rm -rf $ANDROID_ROOT/vendor/lineage
git clone https://github.com/SailfishOS-sagit/android_vendor_lineage.git $ANDROID_ROOT/vendor/lineage -b lineage-16.0
git clone https://github.com/SailfishOS-sagit/hybris-installer.git $ANDROID_ROOT/hybris/hybris-installer -b master
git clone https://github.com/piggz/sailfish-fpd-community.git $ANDROID_ROOT/hybris/mw/sailfish-fpd-community -b master
git clone https://github.com/SailfishOS-sagit/erfanoabdi/fake_crypt.git $ANDROID_ROOT/external/fake_crypt -b master
git clone --recurse-submodules https://github.com/SailfishOS-sagit/droid-hal-sagit.git $ANDROID_ROOT/rpm -b 3.3.0.16
git clone --recurse-submodules https://github.com/SailfishOS-sagit/droid-config-sagit.git $ANDROID_ROOT/hybris/droid-configs -b 3.3.0.16
git clone --recurse-submodules https://github.com/SailfishOS-sagit/droid-hal-version-sagit.git $ANDROID_ROOT/hybris/droid-hal-version-sagit -b 3.3.0.16
rm -rf $ANDROID_ROOT/external/droidmedia
git clone https://github.com/sailfishos/droidmedia.git $ANDROID_ROOT/external/droidmedia
- name: Build HAL
run: |
chmod +x build-hal.sh
bash build-hal.sh
shell: bash
- name: Build dhd in container
run: |
echo "clean more folders"
rm -rf $ANDROID_ROOT/prebuilts $ANDROID_ROOT/external/chromium* $ANDROID_ROOT/tools/external/gradle $ANDROID_ROOT/packages
rm -rf $ANDROID_ROOT/out/build-lineage_sagit.ninja || true
rm -rf $ANDROID_ROOT/out/soong
chmod +x build-rpm.sh
sudo docker images|grep -v REPOSITORY|awk '{print $3}'|xargs docker rmi
sudo docker pull coderus/sailfishos-platform-sdk:$SAILFISH_SKD_VERSION
sudo docker run -v /home/runner/work:/home/nemo/work coderus/sailfishos-platform-sdk:$SAILFISH_SKD_VERSION /bin/sh /home/nemo/work/ci/ci/build-rpm.sh
shell: bash
- name: Check free disk
if: failure()
run: |
df -h
shell: bash
- name : Upload boot image
uses: actions/upload-artifact@master
with:
name: hybris-boot.img
path: ${{env.ANDROID_ROOT}}/out/target/product/${{env.DEVICE}}/hybris-boot.img
- name : Upload install zip arhive
uses: actions/upload-artifact@master
with:
name: sailfishos-3.3.0.16-sagit-Verevka.zip
path: ${{env.ANDROID_ROOT}}/SailfishOScommunity-release-3.3.0.16-sagit-Verevka/sailfishos-3.3.0.16-sagit-Verevka.zip