aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2023-10-23 07:45:20 +0000
committerSamuli Piippo <samuli.piippo@qt.io>2023-10-25 09:18:45 +0300
commitcabe0717992306e36e518eb6dc747ec63bbc1d6f (patch)
tree6f7a2eadc249188e5f260ed9bec94872de44c5cd
parentf2f782e3a1d895ead157584740c24de7f5b40f2b (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)
-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 462c8e9d..c354844b 100644
--- a/meta-boot2qt/classes/internal-build.bbclass
+++ b/meta-boot2qt/classes/internal-build.bbclass
@@ -39,19 +39,19 @@ python enable_internal_build () {
e.data.appendVar('DISTRO_FEATURES_BACKFILL', ' qtinsighttracker')
e.data.setVar('QT_INTERNAL_BUILD', "1")
- e.data.prependVar('SSTATE_MIRRORS', "file://.* http://yocto-cache.ci.qt.io/sstate-caches/${DISTRO_CODENAME}/PATH")
+ e.data.prependVar('SSTATE_MIRRORS', "file://.* https://yocto-cache.ci.qt.io/sstate-caches/${DISTRO}-${DISTRO_CODENAME}/PATH")
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 \
")
}