From a1927cba016c661bd7f7bc8a1ed1a96433fe9a07 Mon Sep 17 00:00:00 2001 From: Denys Drozdov Date: Tue, 2 Nov 2021 16:40:20 +0200 Subject: .gitlab-ci.yml: Fix CI pipeline build On the Git protocol side, unencrypted git:// offers no integrity or authentication, making it subject to tampering. GitHub has disabled support for this protocol. The following error can be obseverved during pipeline build git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks Cloning into '/tmp/uboot-test-hooks'... fatal: remote error: The unauthenticated git protocol on port 9418 is no longer supported. Please see https://github.blog/2021-09-01-improving-git-protocol-security-github/ for more information. Again, only users connecting via SSH or git:// are affected. Change Git remotes to start with https:// Signed-off-by: Denys Drozdov --- .gitlab-ci.yml | 2 +- .travis.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index cfe5657bf8..d22ec85fc6 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -23,7 +23,7 @@ stages: stage: all-in-one-stage before_script: # Clone uboot-test-hooks - - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks + - git clone --depth=1 https://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname` - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname` - grub-mkimage --prefix="" -o ~/grub_x86.efi -O i386-efi normal echo lsefimmap lsefi lsefisystab efinet tftp minicmd diff --git a/.travis.yml b/.travis.yml index c59bd7790b..84c1634768 100644 --- a/.travis.yml +++ b/.travis.yml @@ -43,7 +43,7 @@ addons: install: # Clone uboot-test-hooks - - git clone --depth=1 git://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks + - git clone --depth=1 https://github.com/swarren/uboot-test-hooks.git /tmp/uboot-test-hooks - ln -s travis-ci /tmp/uboot-test-hooks/bin/`hostname` - ln -s travis-ci /tmp/uboot-test-hooks/py/`hostname` # prepare buildman environment -- cgit v1.2.3