Skip to content

Commit b837662

Browse files
committed
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>
1 parent 83a8efc commit b837662

2 files changed

Lines changed: 5 additions & 5 deletions

File tree

.github/workflows/docker-images/yocto-builder/entrypoint-build.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,9 @@ TEMP_DIR="$(mktemp -d)"
2424
cd "$TEMP_DIR"
2525

2626
REPOS=" \
27-
git://git.openembedded.org/openembedded-core \
28-
git://git.openembedded.org/bitbake \
29-
git://git.yoctoproject.org/meta-yocto \
27+
https://git.openembedded.org/openembedded-core \
28+
https://git.openembedded.org/bitbake \
29+
https://git.yoctoproject.org/meta-yocto \
3030
"
3131
for repo in $REPOS; do
3232
log "Cloning $repo on branch $BASE_REF..."

.github/workflows/docker-images/yocto-builder/entrypoint-yocto-check-layer.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ TEMP_DIR="$(mktemp -d)"
2020
cd "$TEMP_DIR"
2121

2222
REPOS=" \
23-
git://git.openembedded.org/openembedded-core \
24-
git://git.openembedded.org/bitbake \
23+
https://git.openembedded.org/openembedded-core \
24+
https://git.openembedded.org/bitbake \
2525
"
2626
for repo in $REPOS; do
2727
log "Cloning $repo on branch $BASE_REF..."

0 commit comments

Comments
 (0)