Hi,
I built an e-0.15-q-20210413-UNOFFICIAL-hotdog.zip with and without signature and the flag that signature Spoofing is restricted. Was wondering which flag composition is the default/best one for the builds. Is there any advice? Am I right that a signature together with restricted spoofing is a good choice?
Another question belongs to OTA_URL. Seems not to be important for unofficial Builds, is it? Was wondering if it makes a difference to leave this flag empty or put the default address into it: “https://ota.ecloud.global/api”.
Here is the command i used for e-0.16-q with restricted spoofing
sudo docker run \
-v “/srv/src:/srv/src:delegated” \
-v “/srv/zips:/srv/zips:delegated” \
-v “/srv/logs:/srv/logs:delegated” \
-v “/srv/ccache:/srv/ccache:delegated” \
-v “/srv/keys:/srv/keys:delegated” \
-e “BRANCH_NAME=v1-q” \
-e “DEVICE_LIST=hotdog” \
-e “SIGN_BUILDS=true” \
-e “SIGNATURE_SPOOFING=restricted” \
-e “OTA_URL=https://ota.ecloud.global/api” \
-e “REPO=https://gitlab.e.foundation/e/os/releases.git” \
registry.gitlab.e.foundation:5000/e/os/docker-lineage-cicd:community
The one without spoofing and own signature together with empty OTA:
sudo docker run \
-v “/srv/src:/srv/src:delegated” \
-v “/srv/zips:/srv/zips:delegated” \
-v “/srv/logs:/srv/logs:delegated” \
-v “/srv/ccache:/srv/ccache:delegated” \
-v “/srv/keys:/srv/keys:delegated” \
-e “BRANCH_NAME=v1-q” \
-e “DEVICE_LIST=hotdog” \
-e “OTA_URL=” \
-e “REPO=https://gitlab.e.foundation/e/os/releases.git” \
registry.gitlab.e.foundation:5000/e/os/docker-lineage-cicd:community
Thanks in advance for some recommendations. The information in the “HOWTO build /e/” section are very good. Thank you for this, but there are some detailed information missing (maybe because of readability reasons).
Maybe one additional questions: Where should i upload those builds? Is android filehost the best place to upload the builds?