aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2021-11-24 09:33:05 +0200
committerQt Cherry-pick Bot <cherrypick_bot@qt-project.org>2021-11-24 10:17:24 +0000
commit915911b2ab5f4430db5ad18004de98d2d1ed1939 (patch)
tree357398a2278e6fb3eb338e15a756e0244c812801
parent6cc0596766ab593c77e3d9853b6e803118c52f32 (diff)
Use correct domain for yocto-cache
Change-Id: I7e58d842987770888588279a7c66caad716a7b0f Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io> (cherry picked from commit 2ab7709e3b56aab955bc131cc6ceec8622f1bd2c) Reviewed-by: Qt Cherry-pick Bot <cherrypick_bot@qt-project.org>
-rw-r--r--coin/module_config.yaml2
-rw-r--r--meta-boot2qt/classes/internal-build.bbclass26
2 files changed, 14 insertions, 14 deletions
diff --git a/coin/module_config.yaml b/coin/module_config.yaml
index c090d39a..af8a0608 100644
--- a/coin/module_config.yaml
+++ b/coin/module_config.yaml
@@ -78,7 +78,7 @@ build_instructions:
sudo hostname $(hostname -s)-$(date +%s%N)
sudo mkdir -p /mnt/yocto-cache
- sudo mount yocto-cache.intra.qt.io:/srv/yocto-cache /mnt/yocto-cache
+ sudo mount yocto-cache.ci.qt.io:/srv/yocto-cache /mnt/yocto-cache
${SOURCE_DIR}/b2qt-init-build-env init --device ${MACHINE} --reference /mnt/yocto-cache/mirror --internal
diff --git a/meta-boot2qt/classes/internal-build.bbclass b/meta-boot2qt/classes/internal-build.bbclass
index 384efccf..e74d9119 100644
--- a/meta-boot2qt/classes/internal-build.bbclass
+++ b/meta-boot2qt/classes/internal-build.bbclass
@@ -30,7 +30,7 @@
python enable_internal_build () {
import socket
try:
- socket.gethostbyname('yocto-cache.intra.qt.io')
+ socket.gethostbyname('yocto-cache.ci.qt.io')
except:
return
@@ -40,19 +40,19 @@ python enable_internal_build () {
e.data.setVar('ENABLE_QMLCOMPILER', "1")
e.data.setVar('QT_INTERNAL_BUILD', "1")
- e.data.prependVar('SSTATE_MIRRORS', "file://.* http://yocto-cache.intra.qt.io/sstate-caches/${DISTRO_CODENAME}/PATH")
+ e.data.prependVar('SSTATE_MIRRORS', "file://.* http://yocto-cache.ci.qt.io/sstate-caches/${DISTRO_CODENAME}/PATH")
e.data.prependVar('PREMIRRORS', "\
- ftp://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- http://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- https://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- bzr://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- cvs://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- git://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- gitsm://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- hg://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- osc://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- p4://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
- svn://.*/.* http://yocto-cache.intra.qt.io/sources/ \n \
+ 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 \
")
}