We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d303bcf commit 2fa6048Copy full SHA for 2fa6048
1 file changed
.github/workflows/build.yml
@@ -222,7 +222,17 @@ jobs:
222
BUILD_TYPE="perf"
223
fi
224
sed -i '/cmdline = \[.*bazel_subcommand.*\]/s/\(bazel_subcommand\)/\1, "--jobs=4"/' ./kernel_platform/msm-kernel/build_with_bazel.py
225
- LTO=thin ./kernel_platform/oplus/build/oplus_build_kernel.sh ${{ inputs.soc }} $BUILD_TYPE
+ # LTO=thin ./kernel_platform/oplus/build/oplus_build_kernel.sh ${{ inputs.soc }} $BUILD_TYPE
226
+ ./kernel_platform/build_with_bazel.py \
227
+ -t ${{ inputs.soc }} \
228
+ gki \
229
+ --jobs=$(nproc --all) \
230
+ --verbose_failures \
231
+ --config=stamp \
232
+ --user_kmi_symbol_lists=//msm-kernel:android/abi_gki_aarch64_qcom \
233
+ --ignore_missing_projects \
234
+ --lto=thin \
235
+ -o "$(pwd)/out"
236
237
- name: Copy Images
238
run: |
0 commit comments