← Back to team overview

linaro-toolchain-builds team mailing list archive

Build failed in Jenkins: openembedded-armv8-rootfs » oe_persistent_cloud,minimal #426

 

See <https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/426/>

------------------------------------------
[...truncated 94 lines...]
+ bash init-and-build.sh linaro-image-minimal

GCC version: 4.8
Target architecture: armv8

jenkins repo sync
fatal: read error: Connection reset by peer
fatal: read error: Connection reset by peer
>From git://git.openembedded.org/meta-openembedded
   2b33380..6b50a7d  master     -> oe/master
>From git://git.openembedded.org/openembedded-core
   f192c44..bc6258f  master     -> oe/master
fatal: unable to connect to github.com:
github.com[0: 204.232.175.90]: errno=Connection timed out

fatal: unable to connect to github.com:
github.com[0: 204.232.175.90]: errno=Connection timed out

error: Cannot fetch meta-java

error: Exited sync due to fetch errors
You had no conf/local.conf file. This configuration file has therefore been
created for you with some default values. You may wish to edit it to use a 
different MACHINE (target hardware) or enable parallel build options to take 
advantage of multiple cores for example. See the file for more information as 
common configuration options are commented.

The Yocto Project has extensive documentation about OE including a reference manual
which can be found at:
    http://yoctoproject.org/documentation

For more information about OpenEmbedded see their website:
    http://www.openembedded.org/

You had no conf/bblayers.conf file. The configuration file has been created for
you with some default values. To add additional metadata layers into your
configuration please add entries to this file.

The Yocto Project has extensive documentation about OE including a reference manual
which can be found at:
    http://yoctoproject.org/documentation

For more information about OpenEmbedded see their website:
    http://www.openembedded.org/



### Shell environment set up for builds. ###

You can now run 'bitbake <target>'

Common targets are:
    core-image-minimal
    core-image-sato
    meta-toolchain
    meta-toolchain-sdk
    adt-installer
    meta-ide-support

You can also run generated qemu images with a command like 'runqemu qemux86'

plenty of space, no cleanup
Parsing recipes...WARNING: openjdk-6-jre does not support aarch64 yet
WARNING: openjdk-6-jre does not support aarch64 yet
WARNING: openjdk-7-jre does not support aarch64 yet
WARNING: openjdk-6-jre does not support aarch64 yet
WARNING: llvm2.9 does not support aarch64 yet
WARNING: llvm2.8 does not support aarch64 yet
ERROR: Error executing a python function in <code>:

The stack trace of python calls that resulted in this exception/failure was:
File: '<code>', lineno: 1, function: <module>
 *** 0001:__anon_639__mnt_ci_build_workspace_openembedded_armv8_rootfs_label_oe_persistent_cloud_rootfs_minimal_openembedded_core_meta_classes_base_bbclass(d)
     0002:__anon_956__mnt_ci_build_workspace_openembedded_armv8_rootfs_label_oe_persistent_cloud_rootfs_minimal_openembedded_core_meta_classes_insane_bbclass(d)
     0003:__anon_230__mnt_ci_build_workspace_openembedded_armv8_rootfs_label_oe_persistent_cloud_rootfs_minimal_openembedded_core_meta_classes_package_bbclass(d)
     0004:__anon_428__mnt_ci_build_workspace_openembedded_armv8_rootfs_label_oe_persistent_cloud_rootfs_minimal_openembedded_core_meta_classes_package_ipk_bbclass(d)
     0005:__anon_20__mnt_ci_build_workspace_openembedded_armv8_rootfs_label_oe_persistent_cloud_rootfs_minimal_openembedded_core_meta_classes_debian_bbclass(d)
File: '__anon_639__mnt_ci_build_workspace_openembedded_armv8_rootfs_label_oe_persistent_cloud_rootfs_minimal_openembedded_core_meta_classes_base_bbclass', lineno: 213, function: __anon_639__mnt_ci_build_workspace_openembedded_armv8_rootfs_label_oe_persistent_cloud_rootfs_minimal_openembedded_core_meta_classes_base_bbclass
     0209:    #
     0210:    override = d.getVar('SRC_URI_OVERRIDES_PACKAGE_ARCH', True)
     0211:    if override != '0':
     0212:        paths = []
 *** 0213:        fpaths = (d.getVar('FILESPATH', True) or '').split(':')
     0214:        machine = d.getVar('MACHINE', True)
     0215:        for p in fpaths:
     0216:            if os.path.basename(p) == machine and os.path.isdir(p):
     0217:                paths.append(p)
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 507, function: getVar
     0503:        value = self.getVarFlag(var, "_content", False, noweakdefault)
     0504:
     0505:        # Call expand() separately to make use of the expand cache
     0506:        if expand and value:
 *** 0507:            return self.expand(value, var)
     0508:        return value
     0509:
     0510:    def renameVar(self, key, newkey, **loginfo):
     0511:        """
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 336, function: expand
     0332:
     0333:        return varparse
     0334:
     0335:    def expand(self, s, varname = None):
 *** 0336:        return self.expandWithRefs(s, varname).value
     0337:
     0338:
     0339:    def finalize(self, parent = False):
     0340:        """Performs final steps upon the datastore, including application of overrides"""
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 317, function: expandWithRefs
     0313:
     0314:        while s.find('${') != -1:
     0315:            olds = s
     0316:            try:
 *** 0317:                s = __expand_var_regexp__.sub(varparse.var_sub, s)
     0318:                s = __expand_python_regexp__.sub(varparse.python_sub, s)
     0319:                if s == olds:
     0320:                    break
     0321:            except ExpansionError:
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 97, function: var_sub
     0093:            key = match.group()[2:-1]
     0094:            if self.varname and key:
     0095:                if self.varname == key:
     0096:                    raise Exception("variable %s references itself!" % self.varname)
 *** 0097:            var = self.d.getVar(key, True)
     0098:            if var is not None:
     0099:                self.references.add(key)
     0100:                return var
     0101:            else:
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 507, function: getVar
     0503:        value = self.getVarFlag(var, "_content", False, noweakdefault)
     0504:
     0505:        # Call expand() separately to make use of the expand cache
     0506:        if expand and value:
 *** 0507:            return self.expand(value, var)
     0508:        return value
     0509:
     0510:    def renameVar(self, key, newkey, **loginfo):
     0511:        """
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 336, function: expand
     0332:
     0333:        return varparse
     0334:
     0335:    def expand(self, s, varname = None):
 *** 0336:        return self.expandWithRefs(s, varname).value
     0337:
     0338:
     0339:    def finalize(self, parent = False):
     0340:        """Performs final steps upon the datastore, including application of overrides"""
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 317, function: expandWithRefs
     0313:
     0314:        while s.find('${') != -1:
     0315:            olds = s
     0316:            try:
 *** 0317:                s = __expand_var_regexp__.sub(varparse.var_sub, s)
     0318:                s = __expand_python_regexp__.sub(varparse.python_sub, s)
     0319:                if s == olds:
     0320:                    break
     0321:            except ExpansionError:
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 97, function: var_sub
     0093:            key = match.group()[2:-1]
     0094:            if self.varname and key:
     0095:                if self.varname == key:
     0096:                    raise Exception("variable %s references itself!" % self.varname)
 *** 0097:            var = self.d.getVar(key, True)
     0098:            if var is not None:
     0099:                self.references.add(key)
     0100:                return var
     0101:            else:
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 507, function: getVar
     0503:        value = self.getVarFlag(var, "_content", False, noweakdefault)
     0504:
     0505:        # Call expand() separately to make use of the expand cache
     0506:        if expand and value:
 *** 0507:            return self.expand(value, var)
     0508:        return value
     0509:
     0510:    def renameVar(self, key, newkey, **loginfo):
     0511:        """
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 336, function: expand
     0332:
     0333:        return varparse
     0334:
     0335:    def expand(self, s, varname = None):
 *** 0336:        return self.expandWithRefs(s, varname).value
     0337:
     0338:
     0339:    def finalize(self, parent = False):
     0340:        """Performs final steps upon the datastore, including application of overrides"""
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 317, function: expandWithRefs
     0313:
     0314:        while s.find('${') != -1:
     0315:            olds = s
     0316:            try:
 *** 0317:                s = __expand_var_regexp__.sub(varparse.var_sub, s)
     0318:                s = __expand_python_regexp__.sub(varparse.python_sub, s)
     0319:                if s == olds:
     0320:                    break
     0321:            except ExpansionError:
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 97, function: var_sub
     0093:            key = match.group()[2:-1]
     0094:            if self.varname and key:
     0095:                if self.varname == key:
     0096:                    raise Exception("variable %s references itself!" % self.varname)
 *** 0097:            var = self.d.getVar(key, True)
     0098:            if var is not None:
     0099:                self.references.add(key)
     0100:                return var
     0101:            else:
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 507, function: getVar
     0503:        value = self.getVarFlag(var, "_content", False, noweakdefault)
     0504:
     0505:        # Call expand() separately to make use of the expand cache
     0506:        if expand and value:
 *** 0507:            return self.expand(value, var)
     0508:        return value
     0509:
     0510:    def renameVar(self, key, newkey, **loginfo):
     0511:        """
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 336, function: expand
     0332:
     0333:        return varparse
     0334:
     0335:    def expand(self, s, varname = None):
 *** 0336:        return self.expandWithRefs(s, varname).value
     0337:
     0338:
     0339:    def finalize(self, parent = False):
     0340:        """Performs final steps upon the datastore, including application of overrides"""
File: '<https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/openembedded-core/bitbake/lib/bb/data_smart.py',> lineno: 326, function: expandWithRefs
     0322:                raise
     0323:            except bb.parse.SkipPackage:
     0324:                raise
     0325:            except Exception as exc:
 *** 0326:                raise ExpansionError(varname, s, exc)
     0327:
     0328:        varparse.value = s
     0329:
     0330:        if varname:
Exception: ExpansionError: Failure expanding variable SRCPV, expression was ${@bb.fetch2.get_srcrev(d)} which triggered exception FetchError: Fetcher failure: Fetch command failed with exit code 128, output:
fatal: unable to connect to github.com:
github.com[0: 204.232.175.90]: errno=Connection timed out



ERROR: Failed to parse recipe: <https://ci.linaro.org/jenkins/job/openembedded-armv8-rootfs/./label=oe_persistent_cloud,rootfs=minimal/ws/meta-linaro/meta-linaro/recipes-extra/hiphopvm/hiphopvm_git.bb>
ERROR: Command execution failed: Exited with 1

Summary: There were 6 WARNING messages shown.
Summary: There were 3 ERROR messages shown, returning a non-zero exit code.
Build step 'Execute shell' marked build as failure


Follow ups