1
0
Fork 0
mirror of https://github.com/lineageos4microg/docker-lineage-cicd synced 2024-05-06 11:16:07 +02:00

fix build signing for Android 14

This commit is contained in:
Pete 2024-02-15 13:28:44 +00:00 committed by Pete Fotheringham
parent e813c32135
commit a62c3e3db2

View File

@ -59,6 +59,22 @@ if [ "$SIGN_BUILDS" = true ]; then
fi
done
fi
# Android 14 requires to set a BUILD file for bazel to avoid errors:
cat > $"KEYS_DIR"/BUILD << _EOB
# adding an empty BUILD file fixes the A14 build error:
# "ERROR: no such package 'keys': BUILD file not found in any of the following directories. Add a BUILD file to a directory to mark it as a package."
# adding the filegroup "android_certificate_directory" fixes the A14 build error:
# "no such target '//keys:android_certificate_directory': target 'android_certificate_directory' not declared in package 'keys'"
filegroup(
name = "android_certificate_directory",
srcs = glob([
"*.pk8",
"*.pem",
]),
visibility = ["//visibility:public"],
)
_EOB
for c in cyngn{-priv,}-app testkey; do
for e in pk8 x509.pem; do