aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 \
")
}