aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2021-11-24 09:33:05 +0200
committerSamuli Piippo <samuli.piippo@qt.io>2021-11-24 10:32:38 +0200
commit2ab7709e3b56aab955bc131cc6ceec8622f1bd2c (patch)
tree240de9876e03818c07c40492d06b926114d97063
parentd5f7c8c656c922df6acd744c2eeb31d11c8f29b5 (diff)
Use correct domain for yocto-cache
Pick-to: 6.2 Change-Id: I7e58d842987770888588279a7c66caad716a7b0f Reviewed-by: Tony Sarajärvi <tony.sarajarvi@qt.io>
-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 65f4422f..831b09b4 100644
--- a/coin/module_config.yaml
+++ b/coin/module_config.yaml
@@ -80,7 +80,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 \
")
}