aboutsummaryrefslogtreecommitdiffstats
path: root/classes
diff options
context:
space:
mode:
authorSamuli Piippo <samuli.piippo@qt.io>2017-08-11 10:46:41 +0300
committerSamuli Piippo <samuli.piippo@qt.io>2017-08-11 08:58:47 +0000
commit8556798b4ec9e703deb398c09d88e68c2af4cd54 (patch)
treea51736056a6c6b0e999c3e99777aaaf58da00d27 /classes
parent8c13aef478448114a8fe0ac112e26b59d7ad03d4 (diff)
Remove all *.ci.local network addresses
The dot-local addresses cause problems with mDNS lookups, replace all with *.intra.qt.io aliases that are now available. Task-number: QTBUG-60153 Change-Id: I60e2e06440ca088d1194615849bf7792c16df362 Reviewed-by: Mikko Gronoff <mikko.gronoff@qt.io>
Diffstat (limited to 'classes')
-rw-r--r--classes/internal-build.bbclass26
1 files changed, 13 insertions, 13 deletions
diff --git a/classes/internal-build.bbclass b/classes/internal-build.bbclass
index ecee8632..0f12a781 100644
--- a/classes/internal-build.bbclass
+++ b/classes/internal-build.bbclass
@@ -30,24 +30,24 @@
python enable_internal_build () {
import socket
try:
- socket.gethostbyname('yocto-cache.ci.local')
+ socket.gethostbyname('yocto-cache.intra.qt.io')
except:
return
e.data.setVar('ENABLE_QTQUICKCOMPILER', "1")
- e.data.setVar('SSTATE_MIRRORS', "file://.* http://yocto-cache.ci.local/sstate-caches/${DISTRO_CODENAME}/PATH")
+ e.data.setVar('SSTATE_MIRRORS', "file://.* http://yocto-cache.intra.qt.io/sstate-caches/${DISTRO_CODENAME}/PATH")
e.data.setVar('PREMIRRORS', "\
- ftp://.*/.* http://yocto-cache.ci.local/sources/ \n \
- http://.*/.* http://yocto-cache.ci.local/sources/ \n \
- https://.*/.* http://yocto-cache.ci.local/sources/ \n \
- bzr://.*/.* http://yocto-cache.ci.local/sources/ \n \
- cvs://.*/.* http://yocto-cache.ci.local/sources/ \n \
- git://.*/.* http://yocto-cache.ci.local/sources/ \n \
- gitsm://.*/.* http://yocto-cache.ci.local/sources/ \n \
- hg://.*/.* http://yocto-cache.ci.local/sources/ \n \
- osc://.*/.* http://yocto-cache.ci.local/sources/ \n \
- p4://.*/.* http://yocto-cache.ci.local/sources/ \n \
- svn://.*/.* http://yocto-cache.ci.local/sources/ \n \
+ 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 \
")
}