aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2023-10-23 07:45:20 +0000
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2023-10-24 12:00:47 +0000
commitb3faf98a2ac8b98f97ecdc93a71d6592f3e3d07d (patch)
treedb8b7a056acf958fc2be9d3c106d8b074deee5a2
parentae77f7b68e62d0fcd82c7f841229ca93a6bf792c (diff)
internal-build: use https for yocto-cache
Switch to using https for the internal yocto-cache server. Change-Id: I1c0560ac29187d5349eff1ff2b1cbdf56b94a012 Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io> (cherry picked from commit 7ca0b06939a03480c6c1ec4b1777a8bc679f5327) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--meta-boot2qt/classes/internal-build.bbclass24
1 files changed, 12 insertions, 12 deletions
diff --git a/meta-boot2qt/classes/internal-build.bbclass b/meta-boot2qt/classes/internal-build.bbclass
index c98b1f09..356d17b6 100644
--- a/meta-boot2qt/classes/internal-build.bbclass
+++ b/meta-boot2qt/classes/internal-build.bbclass
@@ -40,20 +40,20 @@ python enable_internal_build () {
e.data.setVar('QT_COMMERCIAL_MODULES', '1')
e.data.setVar('QT_INTERNAL_BUILD', "1")
- e.data.prependVar('SSTATE_MIRRORS', "file://.* http://yocto-cache.ci.qt.io/sstate-caches/${DISTRO}-${DISTRO_CODENAME}/PATH")
+ e.data.prependVar('SSTATE_MIRRORS', "file://.* https://yocto-cache.ci.qt.io/sstate-caches/${DISTRO}-${DISTRO_CODENAME}/PATH")
e.data.setVar("BB_HASHSERVE_UPSTREAM", "yocto-cache.ci.qt.io:8686")
e.data.prependVar('PREMIRRORS', "\
- ftp://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- http://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- https://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- bzr://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- cvs://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- git://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- gitsm://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- hg://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- osc://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- p4://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
- svn://.*/.* http://yocto-cache.ci.qt.io/sources/ \n \
+ ftp://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ http://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ https://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ bzr://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ cvs://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ git://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ gitsm://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ hg://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ osc://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ p4://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
+ svn://.*/.* https://yocto-cache.ci.qt.io/sources/ \n \
")
}