ci: Switch to using https for fetching OE/YP git repos

git protocol is broken, and anyway https is preferred way to clone from
these git sources.

Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
This commit is contained in:
Khem Raj
2026-04-08 14:53:17 -07:00
committed by Khem Raj
parent 83a8efcf01
commit b837662911
2 changed files with 5 additions and 5 deletions
@@ -24,9 +24,9 @@ TEMP_DIR="$(mktemp -d)"
cd "$TEMP_DIR"
REPOS=" \
git://git.openembedded.org/openembedded-core \
git://git.openembedded.org/bitbake \
git://git.yoctoproject.org/meta-yocto \
https://git.openembedded.org/openembedded-core \
https://git.openembedded.org/bitbake \
https://git.yoctoproject.org/meta-yocto \
"
for repo in $REPOS; do
log "Cloning $repo on branch $BASE_REF..."
@@ -20,8 +20,8 @@ TEMP_DIR="$(mktemp -d)"
cd "$TEMP_DIR"
REPOS=" \
git://git.openembedded.org/openembedded-core \
git://git.openembedded.org/bitbake \
https://git.openembedded.org/openembedded-core \
https://git.openembedded.org/bitbake \
"
for repo in $REPOS; do
log "Cloning $repo on branch $BASE_REF..."