Skip to content

Commit 6e8577f

Browse files
committed
Test Vendor boot disable and lto full
1 parent 38d4bcc commit 6e8577f

File tree

2 files changed

+55
-8
lines changed

2 files changed

+55
-8
lines changed

.github/workflows/build-kernel-release.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
options:
2020
- stable
2121
- next
22-
default: stable
22+
default: next
2323
susfs_branch:
2424
required: true
2525
type: string
@@ -38,6 +38,12 @@ jobs:
3838
manifest: oneplus_11_v.xml
3939
android_version: android13
4040
kernel_version: "5.15"
41+
- model: OP11u
42+
soc: kalama
43+
branch: oneplus/sm8550
44+
manifest: oneplus_11_u.xml
45+
android_version: android13
46+
kernel_version: "5.15"
4147
# - model: OP11r
4248
# soc: waipio
4349
# branch: oneplus/sm8475

.github/workflows/build.yml

Lines changed: 48 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -58,18 +58,62 @@ jobs:
5858
mercurial apt-transport-https mono-complete libmysqlclient \
5959
unixodbc-dev yarn chrpath libssl-dev libxft-dev \
6060
libfreetype6 libfreetype6-dev libfontconfig1 libfontconfig1-dev \
61-
snmp pollinate libpq-dev postgresql-client powershell ruby-full \
61+
snmp pollinate libpq-dev postgresql-client powershell ruby-full rbenv ruby-dev \
6262
sphinxsearch subversion mongodb-org microsoft-edge-stable || true
6363
6464
# Regex-based purges (for bulk families like mysql, php, dotnet)
6565
sudo apt-get purge -y $(dpkg-query -W -f='${binary:Package}\n' | grep -E '^mysql|^php|^dotnet') || true
6666
67+
sudo apt-get purge -y $(dpkg-query -W -f='${binary:Package}\n' | grep -E '^golang|^go-') || true
68+
sudo rm -rf /usr/local/go /usr/lib/go-*
69+
sudo apt-get purge -y nodejs npm || true
70+
sudo apt-get purge -y openjdk-* default-jdk default-jre || true
71+
sudo apt-get purge -y rustc cargo || true
72+
sudo apt-get purge -y scala sbt || true
73+
6774
# Clean up
6875
sudo apt-get autoremove -y
6976
sudo apt-get autoclean -y
7077
echo "some packages purged"
7178
7279
df -h
80+
81+
- name: Maximize Build Space
82+
uses: easimon/maximize-build-space@master
83+
with:
84+
root-reserve-mb: 1024
85+
temp-reserve-mb: 1024
86+
swap-size-mb: 20971520
87+
remove-dotnet: 'true'
88+
remove-android: 'true'
89+
remove-haskell: 'true'
90+
remove-codeql: 'true'
91+
remove-docker-images: 'true'
92+
93+
# - name: Setup SWAP
94+
# run: |
95+
# sudo swapoff -a
96+
# # Check available disk space before creating swap
97+
# AVAILABLE_SPACE=$(df -h . | awk 'NR==2 {print $4}' | grep -o '[0-9]\+')
98+
# if [ "$AVAILABLE_SPACE" -lt 21000 ]; then
99+
# echo "Error: Not enough disk space for 20 GB swap file. Available: $AVAILABLE_SPACE MB"
100+
# exit 1
101+
# fi
102+
# sudo fallocate -l 22G /swapfile
103+
# sudo chmod 600 /swapfile
104+
# sudo mkswap /swapfile
105+
# sudo swapon -p 1 /swapfile
106+
# echo 'vm.swappiness=1' | sudo tee -a /etc/sysctl.conf
107+
# echo 'vm.vfs_cache_pressure=50' | sudo tee -a /etc/sysctl.conf
108+
# echo 'vm.overcommit_memory=1' | sudo tee -a /etc/sysctl.conf
109+
# echo 'vm.overcommit_ratio=200' | sudo tee -a /etc/sysctl.conf
110+
# sudo sysctl -p
111+
# free -h
112+
# df -h
113+
114+
- name: Clone AnyKernel3 and Other Dependencies
115+
run: |
116+
echo "Cloning AnyKernel3 and other dependencies..."
73117
74118
# Install dependencies
75119
echo "Installing Repo and Python"
@@ -83,10 +127,6 @@ jobs:
83127
84128
# Set CONFIG Environment Variable
85129
echo "CONFIG=${{ inputs.model }}" >> $GITHUB_ENV
86-
87-
- name: Clone AnyKernel3 and Other Dependencies
88-
run: |
89-
echo "Cloning AnyKernel3 and other dependencies..."
90130
91131
ANYKERNEL_BRANCH="gki-2.0"
92132
if [[ -z "${{ inputs.susfs_branch }}" ]]; then
@@ -342,7 +382,7 @@ jobs:
342382
sed -i 's/-dirty//' ./external/dtc/scripts/setlocalversion
343383
sed -i 's/-dirty//' ./build/kernel/kleaf/workspace_status_stamp.py || echo "No workspace_status_stamp.py!"
344384
345-
sed -i '/echo "LTO $LTO "/i export LTO=thin' ./oplus/build/oplus_setup.sh
385+
sed -i '/echo "LTO $LTO "/i export LTO=full' ./oplus/build/oplus_setup.sh
346386
sed -i 's/export REPACK_IMG=true/export REPACK_IMG=false/g' ./oplus/build/oplus_setup.sh
347387
348388
# Run perl command to modify UTS_VERSION
@@ -390,7 +430,8 @@ jobs:
390430
else
391431
# cd ./kernel_platform/common/
392432
# make -j$(nproc --all) LLVM=1 ARCH=arm64 CROSS_COMPILE=aarch64-linux-gnu- CROSS_COMPILE_ARM32=arm-linux-gnuabeihf- CC="$CONFIG/kernel_platform/prebuilts-master/clang/host/linux-x86/clang-r450784e/bin/clang" LD="$CONFIG/kernel_platform/prebuilts-master/clang/host/linux-x86/clang-r450784e/bin/ld.lld" HOSTCC=clang HOSTLD=ld.lld O="$CONFIG/kernel_platform/out" KCFLAGS+=-Wno-error gki_defconfig all 2>&1 | tee build_$(date +"%Y_%m_%d_%H_%M_%S").log
393-
LTO=thin ./kernel_platform/oplus/build/oplus_build_kernel.sh ${{ inputs.soc }} "$BUILD_TYPE"
433+
sed -i '/export EXTRA_KBUILD_ARGS="--skip abl"/a export SKIP_VENDOR_BOOT=true\nunset BUILD_VENDOR_BOOT_IMG' ./kernel_platform/oplus/build/oplus_build_kernel.sh
434+
LTO=full ./kernel_platform/oplus/build/oplus_build_kernel.sh ${{ inputs.soc }} "$BUILD_TYPE"
394435
fi
395436
396437
- name: Create ZIP Files for Different Formats

0 commit comments

Comments
 (0)