[JIRA] (OVIRT-773) Problem with parcel shipping, ID:00000784189
by FedEx International Next Flight (oVirt JIRA)
FedEx International Next Flight created OVIRT-773:
-----------------------------------------------------
Summary: Problem with parcel shipping, ID:00000784189
Key: OVIRT-773
URL: https://ovirt-jira.atlassian.net/browse/OVIRT-773
Project: oVirt - virtualization made easy
Issue Type: By-EMAIL
Reporter: FedEx International Next Flight
Assignee: infra
Attachments: Delivery_Notification_00000784189.zip
Dear Customer,
This is to confirm that one or more of your parcels has been shipped.
Shipment Label is attached to this email.
Warm regards,
Timothy Williamson,
FedEx Operation Manager.
--
This message was sent by Atlassian JIRA
(v1000.383.2#100014)
8 years, 1 month
Build failed in Jenkins: ovirt_4.0_he-system-tests #389
by jenkins@jenkins.phx.ovirt.org
See <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/389/changes>
Changes:
[Gal Ben Haim] Fix check-patch to collect logs on failure
[Sandro Bonazzola] opstools-ansible: new job
[Sandro Bonazzola] opstools-ansible: provide spectool
[Sandro Bonazzola] opstools-ansible: fix extra-build-packages
[Sandro Bonazzola] opstools-ansible: added to master nightly publisher
------------------------------------------
[...truncated 1665 lines...]
## took 2645 seconds
## rc = 1
##########################################################
##! ERROR vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv
##! Last 20 log enties: logs/mocker-fedora-23-x86_64.fc23.he_basic_suite_4.0.sh/he_basic_suite_4.0.sh.log
##!
+ true
+ env_cleanup
+ echo '#########################'
#########################
+ local res=0
+ local uuid
+ echo '======== Cleaning up'
======== Cleaning up
+ [[ -e <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...> ]]
+ echo '----------- Cleaning with lago'
----------- Cleaning with lago
+ lago --workdir <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...> destroy --yes --all-prefixes
+ echo '----------- Cleaning with lago done'
----------- Cleaning with lago done
+ [[ 0 != \0 ]]
+ echo '======== Cleanup done'
======== Cleanup done
+ exit 0
Took 2462 seconds
===================================
##!
##! ERROR ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
##!########################################################
##########################################################
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for :.* : True
Logical operation result is TRUE
Running script : #!/bin/bash -xe
echo 'shell_scripts/system_tests.collect_logs.sh'
#
# Required jjb vars:
# version
#
VERSION=4.0
SUITE_TYPE=
WORKSPACE="$PWD"
OVIRT_SUITE="$SUITE_TYPE_suite_$VERSION"
TESTS_LOGS="$WORKSPACE/ovirt-system-tests/exported-artifacts"
rm -rf "$WORKSPACE/exported-artifacts"
mkdir -p "$WORKSPACE/exported-artifacts"
if [[ -d "$TESTS_LOGS" ]]; then
mv "$TESTS_LOGS/"* "$WORKSPACE/exported-artifacts/"
fi
[ovirt_4.0_he-system-tests] $ /bin/bash -xe /tmp/hudson7870854596441348968.sh
+ echo shell_scripts/system_tests.collect_logs.sh
shell_scripts/system_tests.collect_logs.sh
+ VERSION=4.0
+ SUITE_TYPE=
+ WORKSPACE=<http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/>
+ OVIRT_SUITE=4.0
+ TESTS_LOGS=<http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...>
+ rm -rf <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/389/artifact/expor...>
+ mkdir -p <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/389/artifact/expor...>
+ [[ -d <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...> ]]
+ mv <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...> <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...> <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...> <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/389/artifact/expor...>
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 0
Match found for :.* : True
Logical operation result is TRUE
Running script : #!/bin/bash -xe
echo "shell-scripts/mock_cleanup.sh"
shopt -s nullglob
WORKSPACE="$PWD"
# Make clear this is the cleanup, helps reading the jenkins logs
cat <<EOC
_______________________________________________________________________
#######################################################################
# #
# CLEANUP #
# #
#######################################################################
EOC
# Archive the logs, we want them anyway
logs=(
./*log
./*/logs
)
if [[ "$logs" ]]; then
tar cvzf exported-artifacts/logs.tgz "${logs[@]}"
rm -rf "${logs[@]}"
fi
# stop any processes running inside the chroot
failed=false
mock_confs=("$WORKSPACE"/*/mocker*)
# Clean current jobs mockroot if any
for mock_conf_file in "${mock_confs[@]}"; do
[[ "$mock_conf_file" ]] || continue
echo "Cleaning up mock $mock_conf"
mock_root="${mock_conf_file##*/}"
mock_root="${mock_root%.*}"
my_mock="/usr/bin/mock"
my_mock+=" --configdir=${mock_conf_file%/*}"
my_mock+=" --root=${mock_root}"
my_mock+=" --resultdir=$WORKSPACE"
#TODO: investigate why mock --clean fails to umount certain dirs sometimes,
#so we can use it instead of manually doing all this.
echo "Killing all mock orphan processes, if any."
$my_mock \
--orphanskill \
|| {
echo "ERROR: Failed to kill orphans on $chroot."
failed=true
}
mock_root="$(\
grep \
-Po "(?<=config_opts\['root'\] = ')[^']*" \
"$mock_conf_file" \
)" || :
[[ "$mock_root" ]] || continue
mounts=($(mount | awk '{print $3}' | grep "$mock_root")) || :
if [[ "$mounts" ]]; then
echo "Found mounted dirs inside the chroot $chroot. Trying to umount."
fi
for mount in "${mounts[@]}"; do
sudo umount --lazy "$mount" \
|| {
echo "ERROR: Failed to umount $mount."
failed=true
}
done
done
# Clean any leftover chroot from other jobs
for mock_root in /var/lib/mock/*; do
this_chroot_failed=false
mounts=($(mount | awk '{print $3}' | grep "$mock_root")) || :
if [[ "$mounts" ]]; then
echo "Found mounted dirs inside the chroot $mock_root." \
"Trying to umount."
fi
for mount in "${mounts[@]}"; do
sudo umount --lazy "$mount" \
|| {
echo "ERROR: Failed to umount $mount."
failed=true
this_chroot_failed=true
}
done
if ! $this_chroot_failed; then
sudo rm -rf "$mock_root"
fi
done
if $failed; then
echo "Aborting."
exit 1
fi
# remove mock system cache, we will setup proxies to do the caching and this
# takes lots of space between runs
shopt -u nullglob
sudo rm -Rf /var/cache/mock/*
# restore the permissions in the working dir, as sometimes it leaves files
# owned by root and then the 'cleanup workspace' from jenkins job fails to
# clean and breaks the jobs
sudo chown -R "$USER" "$WORKSPACE"
[ovirt_4.0_he-system-tests] $ /bin/bash -xe /tmp/hudson36693686770860226.sh
+ echo shell-scripts/mock_cleanup.sh
shell-scripts/mock_cleanup.sh
+ shopt -s nullglob
+ WORKSPACE=<http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/>
+ cat
_______________________________________________________________________
#######################################################################
# #
# CLEANUP #
# #
#######################################################################
+ logs=(./*log ./*/logs)
+ [[ -n ./ovirt-system-tests/logs ]]
+ tar cvzf exported-artifacts/logs.tgz ./ovirt-system-tests/logs
./ovirt-system-tests/logs/
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.init/
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.init/stdout_stderr.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.init/state.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.init/build.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.init/root.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.install_packages/
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.install_packages/stdout_stderr.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.install_packages/state.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.install_packages/build.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.install_packages/root.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.clean_rpmdb/
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.clean_rpmdb/stdout_stderr.log
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.he_basic_suite_4.0.sh/
./ovirt-system-tests/logs/mocker-fedora-23-x86_64.fc23.he_basic_suite_4.0.sh/he_basic_suite_4.0.sh.log
+ rm -rf ./ovirt-system-tests/logs
+ failed=false
+ mock_confs=("$WORKSPACE"/*/mocker*)
+ for mock_conf_file in '"${mock_confs[@]}"'
+ [[ -n <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...> ]]
+ echo 'Cleaning up mock '
Cleaning up mock
+ mock_root=mocker-fedora-23-x86_64.fc23.cfg
+ mock_root=mocker-fedora-23-x86_64.fc23
+ my_mock=/usr/bin/mock
+ my_mock+=' --configdir=<http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-tests'>
+ my_mock+=' --root=mocker-fedora-23-x86_64.fc23'
+ my_mock+=' --resultdir=<http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/'>
+ echo 'Killing all mock orphan processes, if any.'
Killing all mock orphan processes, if any.
+ /usr/bin/mock --configdir=<http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-tests> --root=mocker-fedora-23-x86_64.fc23 --resultdir=<http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/> --orphanskill
WARNING: Could not find required logging config file: <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te....> Using default...
INFO: mock.py version 1.2.18 starting (python version = 3.5.1)...
Start: init plugins
INFO: selinux enabled
Finish: init plugins
Start: run
Finish: run
++ grep -Po '(?<=config_opts\['\''root'\''\] = '\'')[^'\'']*' <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/ovirt-system-te...>
+ mock_root=fedora-23-x86_64-0c362156a2fa4a935ea8b988eb73b2ad
+ [[ -n fedora-23-x86_64-0c362156a2fa4a935ea8b988eb73b2ad ]]
+ mounts=($(mount | awk '{print $3}' | grep "$mock_root"))
++ mount
++ awk '{print $3}'
++ grep fedora-23-x86_64-0c362156a2fa4a935ea8b988eb73b2ad
+ :
+ [[ -n '' ]]
+ false
+ shopt -u nullglob
+ sudo rm -Rf /var/cache/mock/fedora-23-x86_64-0c362156a2fa4a935ea8b988eb73b2ad
+ sudo chown -R jenkins <http://jenkins.ovirt.org/job/ovirt_4.0_he-system-tests/ws/>
POST BUILD TASK : SUCCESS
END OF POST BUILD TASK : 1
Recording test results
Archiving artifacts
8 years, 1 month
[JIRA] (OVIRT-772) Re: Upgrade from 3.6 el7 job broken?
by Evgheni Dereveanchin (oVirt JIRA)
[ https://ovirt-jira.atlassian.net/browse/OVIRT-772?page=com.atlassian.jira... ]
Evgheni Dereveanchin closed OVIRT-772.
--------------------------------------
Resolution: Fixed
The slave was fixed (puppet certificate issues) and hystrix was installed as expected.
Closing the case for now, please reopen if you see a similar issue on other slaves as well.
> Re: Upgrade from 3.6 el7 job broken?
> ------------------------------------
>
> Key: OVIRT-772
> URL: https://ovirt-jira.atlassian.net/browse/OVIRT-772
> Project: oVirt - virtualization made easy
> Issue Type: By-EMAIL
> Reporter: sbonazzo
> Assignee: Evgheni Dereveanchin
>
> On Fri, Oct 14, 2016 at 8:59 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
> >
> >
> > On Fri, Oct 14, 2016 at 8:57 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> > wrote:
> >
> >>
> >>
> >> On Fri, Oct 14, 2016 at 8:48 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> >> wrote:
> >>
> >>>
> >>>
> >>> On Fri, Oct 14, 2016 at 8:44 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
> >>>
> >>>> Hi,
> >>>>
> >>>> I saw a lot of failing builds lately on this job:
> >>>>
> >>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
> >>>> m-3.6_el7_created/
> >>>>
> >>>> One log which still exists is:
> >>>>
> >>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
> >>>> m-3.6_el7_created/3666/
> >>>> It seems like the BUILD ENGINE RPM step is failing, but I can't see any
> >>>> reason why:
> >>>>
> >>>> BUILDING ENGINE RPM
> >>>> + create_rpms /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo .gitee47dd2
> >>>> + local src_rpm=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
> >>>> + local dst_dir=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo
> >>>> + local release=.gitee47dd2
> >>>> + local workspace=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created
> >>>> + local 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 '
> >>>> + local 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G '
> >>>> + env 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 ' 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G ' rpmbuild -D 'ovirt_build_minimal 1' -D 'release_suffix .gitee47dd2' -D 'ovirt_build_extra_flags -gs /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/artifactory-ovirt-org-settings.xml' -D '_srcrpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_specdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_sourcedir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_rpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_builddir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' --rebuild /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
> >>>> + return 1
> >>>> Build step 'Execute shell' marked build as failure
> >>>> Performing Post build task...
> >>>> Match found for :.* : True
> >>>> Logical operation result is TRUE
> >>>> Running script : #!/bin/bash -x
> >>>>
> >>>>
> >>>> Best Regards,
> >>>>
> >>>>
> >>>
> >>> Rpmbuild fails on:
> >>> error: Failed build dependencies:
> >>> hystrix-core is needed by ovirt-engine-4.1.0-0.0.master.
> >>> 20161014004451.git32a6f0c.el7.centos.noarch
> >>> hystrix-metrics-event-stream is needed by ovirt-engine-4.1.0-0.0.master.
> >>> 20161014004451.git32a6f0c.el7.centos.noarch
> >>> Installing /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6
> >>> _el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014
> >>> 004451.el7.centos.src.rpm
> >>>
> >>> I'll check why those rpms are missing.
> >>>
> >>
> >> Looks like a temporary failure accessing EPEL repository.
> >>
> >>
> > Hm, maybe it happens on some slaves only, but there always? Because it
> > happens pretty often.
> > Here is a good example:
> >
> > https://gerrit.ovirt.org/#/q/status:open+project:ovirt-
> > engine+branch:master+topic:AuditLogableBase-inject
> >
> > All the broken builds are because of this. And that is just after the last
> > rebase from Alon. Before that it was pretty much the same picture.
> >
> Found it. The job is not running in mock and is not installing build
> dependencies. It just relies on the packages installed on the host.
> Evgheni created several new slaves recently and seems like hystrix is
> missing on them.
> Evgheni can you please add hystrix-core and hystrix-metrics-event-stream to
> the slave configuration?
> Opening a ticket.
> Thanks
> >
> >
> >>
> >>
> >>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>>
> >>>> Roman
> >>>>
> >>>>
> >>>> _______________________________________________
> >>>> Infra mailing list
> >>>> Infra(a)ovirt.org
> >>>> http://lists.ovirt.org/mailman/listinfo/infra
> >>>>
> >>>>
> >>>
> >>>
> >>> --
> >>> Sandro Bonazzola
> >>> Better technology. Faster innovation. Powered by community collaboration.
> >>> See how it works at redhat.com
> >>> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> >>>
> >>
> >>
> >>
> >> --
> >> Sandro Bonazzola
> >> Better technology. Faster innovation. Powered by community collaboration.
> >> See how it works at redhat.com
> >> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> >>
> >
> >
> --
> Sandro Bonazzola
> Better technology. Faster innovation. Powered by community collaboration.
> See how it works at redhat.com
> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
--
This message was sent by Atlassian JIRA
(v1000.383.2#100014)
8 years, 1 month
[JIRA] (OVIRT-772) Re: Upgrade from 3.6 el7 job broken?
by Evgheni Dereveanchin (oVirt JIRA)
[ https://ovirt-jira.atlassian.net/browse/OVIRT-772?page=com.atlassian.jira... ]
Evgheni Dereveanchin updated OVIRT-772:
---------------------------------------
Status: In Progress (was: To Do)
> Re: Upgrade from 3.6 el7 job broken?
> ------------------------------------
>
> Key: OVIRT-772
> URL: https://ovirt-jira.atlassian.net/browse/OVIRT-772
> Project: oVirt - virtualization made easy
> Issue Type: By-EMAIL
> Reporter: sbonazzo
> Assignee: Evgheni Dereveanchin
>
> On Fri, Oct 14, 2016 at 8:59 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
> >
> >
> > On Fri, Oct 14, 2016 at 8:57 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> > wrote:
> >
> >>
> >>
> >> On Fri, Oct 14, 2016 at 8:48 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> >> wrote:
> >>
> >>>
> >>>
> >>> On Fri, Oct 14, 2016 at 8:44 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
> >>>
> >>>> Hi,
> >>>>
> >>>> I saw a lot of failing builds lately on this job:
> >>>>
> >>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
> >>>> m-3.6_el7_created/
> >>>>
> >>>> One log which still exists is:
> >>>>
> >>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
> >>>> m-3.6_el7_created/3666/
> >>>> It seems like the BUILD ENGINE RPM step is failing, but I can't see any
> >>>> reason why:
> >>>>
> >>>> BUILDING ENGINE RPM
> >>>> + create_rpms /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo .gitee47dd2
> >>>> + local src_rpm=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
> >>>> + local dst_dir=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo
> >>>> + local release=.gitee47dd2
> >>>> + local workspace=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created
> >>>> + local 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 '
> >>>> + local 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G '
> >>>> + env 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 ' 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G ' rpmbuild -D 'ovirt_build_minimal 1' -D 'release_suffix .gitee47dd2' -D 'ovirt_build_extra_flags -gs /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/artifactory-ovirt-org-settings.xml' -D '_srcrpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_specdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_sourcedir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_rpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_builddir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' --rebuild /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
> >>>> + return 1
> >>>> Build step 'Execute shell' marked build as failure
> >>>> Performing Post build task...
> >>>> Match found for :.* : True
> >>>> Logical operation result is TRUE
> >>>> Running script : #!/bin/bash -x
> >>>>
> >>>>
> >>>> Best Regards,
> >>>>
> >>>>
> >>>
> >>> Rpmbuild fails on:
> >>> error: Failed build dependencies:
> >>> hystrix-core is needed by ovirt-engine-4.1.0-0.0.master.
> >>> 20161014004451.git32a6f0c.el7.centos.noarch
> >>> hystrix-metrics-event-stream is needed by ovirt-engine-4.1.0-0.0.master.
> >>> 20161014004451.git32a6f0c.el7.centos.noarch
> >>> Installing /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6
> >>> _el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014
> >>> 004451.el7.centos.src.rpm
> >>>
> >>> I'll check why those rpms are missing.
> >>>
> >>
> >> Looks like a temporary failure accessing EPEL repository.
> >>
> >>
> > Hm, maybe it happens on some slaves only, but there always? Because it
> > happens pretty often.
> > Here is a good example:
> >
> > https://gerrit.ovirt.org/#/q/status:open+project:ovirt-
> > engine+branch:master+topic:AuditLogableBase-inject
> >
> > All the broken builds are because of this. And that is just after the last
> > rebase from Alon. Before that it was pretty much the same picture.
> >
> Found it. The job is not running in mock and is not installing build
> dependencies. It just relies on the packages installed on the host.
> Evgheni created several new slaves recently and seems like hystrix is
> missing on them.
> Evgheni can you please add hystrix-core and hystrix-metrics-event-stream to
> the slave configuration?
> Opening a ticket.
> Thanks
> >
> >
> >>
> >>
> >>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>>
> >>>> Roman
> >>>>
> >>>>
> >>>> _______________________________________________
> >>>> Infra mailing list
> >>>> Infra(a)ovirt.org
> >>>> http://lists.ovirt.org/mailman/listinfo/infra
> >>>>
> >>>>
> >>>
> >>>
> >>> --
> >>> Sandro Bonazzola
> >>> Better technology. Faster innovation. Powered by community collaboration.
> >>> See how it works at redhat.com
> >>> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> >>>
> >>
> >>
> >>
> >> --
> >> Sandro Bonazzola
> >> Better technology. Faster innovation. Powered by community collaboration.
> >> See how it works at redhat.com
> >> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> >>
> >
> >
> --
> Sandro Bonazzola
> Better technology. Faster innovation. Powered by community collaboration.
> See how it works at redhat.com
> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
--
This message was sent by Atlassian JIRA
(v1000.383.2#100014)
8 years, 1 month
[JIRA] (OVIRT-772) Re: Upgrade from 3.6 el7 job broken?
by Evgheni Dereveanchin (oVirt JIRA)
[ https://ovirt-jira.atlassian.net/browse/OVIRT-772?page=com.atlassian.jira... ]
Evgheni Dereveanchin reassigned OVIRT-772:
------------------------------------------
Assignee: Evgheni Dereveanchin (was: infra)
> Re: Upgrade from 3.6 el7 job broken?
> ------------------------------------
>
> Key: OVIRT-772
> URL: https://ovirt-jira.atlassian.net/browse/OVIRT-772
> Project: oVirt - virtualization made easy
> Issue Type: By-EMAIL
> Reporter: sbonazzo
> Assignee: Evgheni Dereveanchin
>
> On Fri, Oct 14, 2016 at 8:59 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
> >
> >
> > On Fri, Oct 14, 2016 at 8:57 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> > wrote:
> >
> >>
> >>
> >> On Fri, Oct 14, 2016 at 8:48 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> >> wrote:
> >>
> >>>
> >>>
> >>> On Fri, Oct 14, 2016 at 8:44 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
> >>>
> >>>> Hi,
> >>>>
> >>>> I saw a lot of failing builds lately on this job:
> >>>>
> >>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
> >>>> m-3.6_el7_created/
> >>>>
> >>>> One log which still exists is:
> >>>>
> >>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
> >>>> m-3.6_el7_created/3666/
> >>>> It seems like the BUILD ENGINE RPM step is failing, but I can't see any
> >>>> reason why:
> >>>>
> >>>> BUILDING ENGINE RPM
> >>>> + create_rpms /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo .gitee47dd2
> >>>> + local src_rpm=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
> >>>> + local dst_dir=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo
> >>>> + local release=.gitee47dd2
> >>>> + local workspace=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created
> >>>> + local 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 '
> >>>> + local 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G '
> >>>> + env 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 ' 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G ' rpmbuild -D 'ovirt_build_minimal 1' -D 'release_suffix .gitee47dd2' -D 'ovirt_build_extra_flags -gs /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/artifactory-ovirt-org-settings.xml' -D '_srcrpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_specdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_sourcedir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_rpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_builddir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' --rebuild /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
> >>>> + return 1
> >>>> Build step 'Execute shell' marked build as failure
> >>>> Performing Post build task...
> >>>> Match found for :.* : True
> >>>> Logical operation result is TRUE
> >>>> Running script : #!/bin/bash -x
> >>>>
> >>>>
> >>>> Best Regards,
> >>>>
> >>>>
> >>>
> >>> Rpmbuild fails on:
> >>> error: Failed build dependencies:
> >>> hystrix-core is needed by ovirt-engine-4.1.0-0.0.master.
> >>> 20161014004451.git32a6f0c.el7.centos.noarch
> >>> hystrix-metrics-event-stream is needed by ovirt-engine-4.1.0-0.0.master.
> >>> 20161014004451.git32a6f0c.el7.centos.noarch
> >>> Installing /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6
> >>> _el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014
> >>> 004451.el7.centos.src.rpm
> >>>
> >>> I'll check why those rpms are missing.
> >>>
> >>
> >> Looks like a temporary failure accessing EPEL repository.
> >>
> >>
> > Hm, maybe it happens on some slaves only, but there always? Because it
> > happens pretty often.
> > Here is a good example:
> >
> > https://gerrit.ovirt.org/#/q/status:open+project:ovirt-
> > engine+branch:master+topic:AuditLogableBase-inject
> >
> > All the broken builds are because of this. And that is just after the last
> > rebase from Alon. Before that it was pretty much the same picture.
> >
> Found it. The job is not running in mock and is not installing build
> dependencies. It just relies on the packages installed on the host.
> Evgheni created several new slaves recently and seems like hystrix is
> missing on them.
> Evgheni can you please add hystrix-core and hystrix-metrics-event-stream to
> the slave configuration?
> Opening a ticket.
> Thanks
> >
> >
> >>
> >>
> >>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>>
> >>>> Roman
> >>>>
> >>>>
> >>>> _______________________________________________
> >>>> Infra mailing list
> >>>> Infra(a)ovirt.org
> >>>> http://lists.ovirt.org/mailman/listinfo/infra
> >>>>
> >>>>
> >>>
> >>>
> >>> --
> >>> Sandro Bonazzola
> >>> Better technology. Faster innovation. Powered by community collaboration.
> >>> See how it works at redhat.com
> >>> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> >>>
> >>
> >>
> >>
> >> --
> >> Sandro Bonazzola
> >> Better technology. Faster innovation. Powered by community collaboration.
> >> See how it works at redhat.com
> >> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> >>
> >
> >
> --
> Sandro Bonazzola
> Better technology. Faster innovation. Powered by community collaboration.
> See how it works at redhat.com
> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
--
This message was sent by Atlassian JIRA
(v1000.383.2#100014)
8 years, 1 month
[JIRA] (OVIRT-772) Re: Upgrade from 3.6 el7 job broken?
by Evgheni Dereveanchin (oVirt JIRA)
[ https://ovirt-jira.atlassian.net/browse/OVIRT-772?page=com.atlassian.jira... ]
Evgheni Dereveanchin commented on OVIRT-772:
--------------------------------------------
Hi Sandro,
This was fixed recently as we added hystrix to the respective puppet manifest:
https://gerrit.ovirt.org/#/c/65291/
I checked the failing job and it seems to be related to a single slave vm0026.
It seems to be broken (doesn't even show up in foreman so never applied
the puppet class to install missing packages). I took it offline and will check
what's wrong with it. Thanks for bringing this to my attention!
The jira ticket related to modifying the job and making the build part run
in mock and not rely on host packages is here:
https://ovirt-jira.atlassian.net/browse/OVIRT-616
Regards,
Evgheni Dereveanchin
----- Original Message -----
From: "Sandro Bonazzola" <sbonazzo(a)redhat.com>
To: "Roman Mohr" <rmohr(a)redhat.com>, "Evgheni Dereveanchin" <ederevea(a)redhat.com>, infra-support(a)ovirt.org
Cc: "infra" <infra(a)ovirt.org>, "devel" <devel(a)ovirt.org>
Sent: Friday, 14 October, 2016 9:09:10 AM
Subject: Re: Upgrade from 3.6 el7 job broken?
On Fri, Oct 14, 2016 at 8:59 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
>
>
> On Fri, Oct 14, 2016 at 8:57 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> wrote:
>
>>
>>
>> On Fri, Oct 14, 2016 at 8:48 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
>> wrote:
>>
>>>
>>>
>>> On Fri, Oct 14, 2016 at 8:44 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
>>>
>>>> Hi,
>>>>
>>>> I saw a lot of failing builds lately on this job:
>>>>
>>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
>>>> m-3.6_el7_created/
>>>>
>>>> One log which still exists is:
>>>>
>>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
>>>> m-3.6_el7_created/3666/
>>>> It seems like the BUILD ENGINE RPM step is failing, but I can't see any
>>>> reason why:
>>>>
>>>> BUILDING ENGINE RPM
>>>> + create_rpms /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo .gitee47dd2
>>>> + local src_rpm=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
>>>> + local dst_dir=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo
>>>> + local release=.gitee47dd2
>>>> + local workspace=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created
>>>> + local 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 '
>>>> + local 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G '
>>>> + env 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 ' 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G ' rpmbuild -D 'ovirt_build_minimal 1' -D 'release_suffix .gitee47dd2' -D 'ovirt_build_extra_flags -gs /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/artifactory-ovirt-org-settings.xml' -D '_srcrpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_specdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_sourcedir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_rpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_builddir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' --rebuild /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
>>>> + return 1
>>>> Build step 'Execute shell' marked build as failure
>>>> Performing Post build task...
>>>> Match found for :.* : True
>>>> Logical operation result is TRUE
>>>> Running script : #!/bin/bash -x
>>>>
>>>>
>>>> Best Regards,
>>>>
>>>>
>>>
>>> Rpmbuild fails on:
>>> error: Failed build dependencies:
>>> hystrix-core is needed by ovirt-engine-4.1.0-0.0.master.
>>> 20161014004451.git32a6f0c.el7.centos.noarch
>>> hystrix-metrics-event-stream is needed by ovirt-engine-4.1.0-0.0.master.
>>> 20161014004451.git32a6f0c.el7.centos.noarch
>>> Installing /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6
>>> _el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014
>>> 004451.el7.centos.src.rpm
>>>
>>> I'll check why those rpms are missing.
>>>
>>
>> Looks like a temporary failure accessing EPEL repository.
>>
>>
> Hm, maybe it happens on some slaves only, but there always? Because it
> happens pretty often.
> Here is a good example:
>
> https://gerrit.ovirt.org/#/q/status:open+project:ovirt-
> engine+branch:master+topic:AuditLogableBase-inject
>
> All the broken builds are because of this. And that is just after the last
> rebase from Alon. Before that it was pretty much the same picture.
>
Found it. The job is not running in mock and is not installing build
dependencies. It just relies on the packages installed on the host.
Evgheni created several new slaves recently and seems like hystrix is
missing on them.
Evgheni can you please add hystrix-core and hystrix-metrics-event-stream to
the slave configuration?
Opening a ticket.
Thanks
>
>
>>
>>
>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>>
>>>> Roman
>>>>
>>>>
>>>> _______________________________________________
>>>> Infra mailing list
>>>> Infra(a)ovirt.org
>>>> http://lists.ovirt.org/mailman/listinfo/infra
>>>>
>>>>
>>>
>>>
>>> --
>>> Sandro Bonazzola
>>> Better technology. Faster innovation. Powered by community collaboration.
>>> See how it works at redhat.com
>>> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
>>>
>>
>>
>>
>> --
>> Sandro Bonazzola
>> Better technology. Faster innovation. Powered by community collaboration.
>> See how it works at redhat.com
>> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
>>
>
>
--
Sandro Bonazzola
Better technology. Faster innovation. Powered by community collaboration.
See how it works at redhat.com
<https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> Re: Upgrade from 3.6 el7 job broken?
> ------------------------------------
>
> Key: OVIRT-772
> URL: https://ovirt-jira.atlassian.net/browse/OVIRT-772
> Project: oVirt - virtualization made easy
> Issue Type: By-EMAIL
> Reporter: sbonazzo
> Assignee: infra
>
> On Fri, Oct 14, 2016 at 8:59 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
> >
> >
> > On Fri, Oct 14, 2016 at 8:57 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> > wrote:
> >
> >>
> >>
> >> On Fri, Oct 14, 2016 at 8:48 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> >> wrote:
> >>
> >>>
> >>>
> >>> On Fri, Oct 14, 2016 at 8:44 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
> >>>
> >>>> Hi,
> >>>>
> >>>> I saw a lot of failing builds lately on this job:
> >>>>
> >>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
> >>>> m-3.6_el7_created/
> >>>>
> >>>> One log which still exists is:
> >>>>
> >>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
> >>>> m-3.6_el7_created/3666/
> >>>> It seems like the BUILD ENGINE RPM step is failing, but I can't see any
> >>>> reason why:
> >>>>
> >>>> BUILDING ENGINE RPM
> >>>> + create_rpms /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo .gitee47dd2
> >>>> + local src_rpm=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
> >>>> + local dst_dir=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo
> >>>> + local release=.gitee47dd2
> >>>> + local workspace=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created
> >>>> + local 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 '
> >>>> + local 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G '
> >>>> + env 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 ' 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G ' rpmbuild -D 'ovirt_build_minimal 1' -D 'release_suffix .gitee47dd2' -D 'ovirt_build_extra_flags -gs /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/artifactory-ovirt-org-settings.xml' -D '_srcrpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_specdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_sourcedir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_rpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_builddir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' --rebuild /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
> >>>> + return 1
> >>>> Build step 'Execute shell' marked build as failure
> >>>> Performing Post build task...
> >>>> Match found for :.* : True
> >>>> Logical operation result is TRUE
> >>>> Running script : #!/bin/bash -x
> >>>>
> >>>>
> >>>> Best Regards,
> >>>>
> >>>>
> >>>
> >>> Rpmbuild fails on:
> >>> error: Failed build dependencies:
> >>> hystrix-core is needed by ovirt-engine-4.1.0-0.0.master.
> >>> 20161014004451.git32a6f0c.el7.centos.noarch
> >>> hystrix-metrics-event-stream is needed by ovirt-engine-4.1.0-0.0.master.
> >>> 20161014004451.git32a6f0c.el7.centos.noarch
> >>> Installing /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6
> >>> _el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014
> >>> 004451.el7.centos.src.rpm
> >>>
> >>> I'll check why those rpms are missing.
> >>>
> >>
> >> Looks like a temporary failure accessing EPEL repository.
> >>
> >>
> > Hm, maybe it happens on some slaves only, but there always? Because it
> > happens pretty often.
> > Here is a good example:
> >
> > https://gerrit.ovirt.org/#/q/status:open+project:ovirt-
> > engine+branch:master+topic:AuditLogableBase-inject
> >
> > All the broken builds are because of this. And that is just after the last
> > rebase from Alon. Before that it was pretty much the same picture.
> >
> Found it. The job is not running in mock and is not installing build
> dependencies. It just relies on the packages installed on the host.
> Evgheni created several new slaves recently and seems like hystrix is
> missing on them.
> Evgheni can you please add hystrix-core and hystrix-metrics-event-stream to
> the slave configuration?
> Opening a ticket.
> Thanks
> >
> >
> >>
> >>
> >>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>
> >>>>
> >>>> Roman
> >>>>
> >>>>
> >>>> _______________________________________________
> >>>> Infra mailing list
> >>>> Infra(a)ovirt.org
> >>>> http://lists.ovirt.org/mailman/listinfo/infra
> >>>>
> >>>>
> >>>
> >>>
> >>> --
> >>> Sandro Bonazzola
> >>> Better technology. Faster innovation. Powered by community collaboration.
> >>> See how it works at redhat.com
> >>> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> >>>
> >>
> >>
> >>
> >> --
> >> Sandro Bonazzola
> >> Better technology. Faster innovation. Powered by community collaboration.
> >> See how it works at redhat.com
> >> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
> >>
> >
> >
> --
> Sandro Bonazzola
> Better technology. Faster innovation. Powered by community collaboration.
> See how it works at redhat.com
> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
--
This message was sent by Atlassian JIRA
(v1000.383.2#100014)
8 years, 1 month
Upgrade from 3.6 el7 job broken?
by Roman Mohr
Hi,
I saw a lot of failing builds lately on this job:
http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-from-3.6_el7_cre...
One log which still exists is:
http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-from-3.6_el7_cre...
It seems like the BUILD ENGINE RPM step is failing, but I can't see any
reason why:
BUILDING ENGINE RPM
+ create_rpms /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo
.gitee47dd2
+ local src_rpm=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
+ local dst_dir=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo
+ local release=.gitee47dd2
+ local workspace=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created
+ local 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G
-Dgwt.compiler.localWorkers=1 '
+ local 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M
-XX:MaxPermSize=1G -Xms1G -Xmx6G '
+ env 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G
-Dgwt.compiler.localWorkers=1 ' 'BUILD_JAVA_OPTS_GWT=
-XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G '
rpmbuild -D 'ovirt_build_minimal 1' -D 'release_suffix .gitee47dd2' -D
'ovirt_build_extra_flags -gs
/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/artifactory-ovirt-org-settings.xml'
-D '_srcrpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo'
-D '_specdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo'
-D '_sourcedir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo'
-D '_rpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo'
-D '_builddir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo'
--rebuild /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
+ return 1
Build step 'Execute shell' marked build as failure
Performing Post build task...
Match found for :.* : True
Logical operation result is TRUE
Running script : #!/bin/bash -x
Best Regards,
Roman
8 years, 1 month
[JIRA] (OVIRT-772) Re: Upgrade from 3.6 el7 job broken?
by sbonazzo (oVirt JIRA)
sbonazzo created OVIRT-772:
------------------------------
Summary: Re: Upgrade from 3.6 el7 job broken?
Key: OVIRT-772
URL: https://ovirt-jira.atlassian.net/browse/OVIRT-772
Project: oVirt - virtualization made easy
Issue Type: By-EMAIL
Reporter: sbonazzo
Assignee: infra
On Fri, Oct 14, 2016 at 8:59 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
>
>
> On Fri, Oct 14, 2016 at 8:57 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
> wrote:
>
>>
>>
>> On Fri, Oct 14, 2016 at 8:48 AM, Sandro Bonazzola <sbonazzo(a)redhat.com>
>> wrote:
>>
>>>
>>>
>>> On Fri, Oct 14, 2016 at 8:44 AM, Roman Mohr <rmohr(a)redhat.com> wrote:
>>>
>>>> Hi,
>>>>
>>>> I saw a lot of failing builds lately on this job:
>>>>
>>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
>>>> m-3.6_el7_created/
>>>>
>>>> One log which still exists is:
>>>>
>>>> http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-fro
>>>> m-3.6_el7_created/3666/
>>>> It seems like the BUILD ENGINE RPM step is failing, but I can't see any
>>>> reason why:
>>>>
>>>> BUILDING ENGINE RPM
>>>> + create_rpms /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo .gitee47dd2
>>>> + local src_rpm=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
>>>> + local dst_dir=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo
>>>> + local release=.gitee47dd2
>>>> + local workspace=/home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created
>>>> + local 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 '
>>>> + local 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G '
>>>> + env 'BUILD_JAVA_OPTS_MAVEN= -XX:MaxPermSize=1G -Dgwt.compiler.localWorkers=1 ' 'BUILD_JAVA_OPTS_GWT= -XX:PermSize=512M -XX:MaxPermSize=1G -Xms1G -Xmx6G ' rpmbuild -D 'ovirt_build_minimal 1' -D 'release_suffix .gitee47dd2' -D 'ovirt_build_extra_flags -gs /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/artifactory-ovirt-org-settings.xml' -D '_srcrpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_specdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_sourcedir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_rpmdir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' -D '_builddir /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo' --rebuild /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6_el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014001903.el7.centos.src.rpm
>>>> + return 1
>>>> Build step 'Execute shell' marked build as failure
>>>> Performing Post build task...
>>>> Match found for :.* : True
>>>> Logical operation result is TRUE
>>>> Running script : #!/bin/bash -x
>>>>
>>>>
>>>> Best Regards,
>>>>
>>>>
>>>
>>> Rpmbuild fails on:
>>> error: Failed build dependencies:
>>> hystrix-core is needed by ovirt-engine-4.1.0-0.0.master.
>>> 20161014004451.git32a6f0c.el7.centos.noarch
>>> hystrix-metrics-event-stream is needed by ovirt-engine-4.1.0-0.0.master.
>>> 20161014004451.git32a6f0c.el7.centos.noarch
>>> Installing /home/jenkins/workspace/ovirt-engine_master_upgrade-from-3.6
>>> _el7_created/tmp_repo/ovirt-engine-4.1.0-0.0.master.20161014
>>> 004451.el7.centos.src.rpm
>>>
>>> I'll check why those rpms are missing.
>>>
>>
>> Looks like a temporary failure accessing EPEL repository.
>>
>>
> Hm, maybe it happens on some slaves only, but there always? Because it
> happens pretty often.
> Here is a good example:
>
> https://gerrit.ovirt.org/#/q/status:open+project:ovirt-
> engine+branch:master+topic:AuditLogableBase-inject
>
> All the broken builds are because of this. And that is just after the last
> rebase from Alon. Before that it was pretty much the same picture.
>
Found it. The job is not running in mock and is not installing build
dependencies. It just relies on the packages installed on the host.
Evgheni created several new slaves recently and seems like hystrix is
missing on them.
Evgheni can you please add hystrix-core and hystrix-metrics-event-stream to
the slave configuration?
Opening a ticket.
Thanks
>
>
>>
>>
>>
>>>
>>>
>>>
>>>
>>>
>>>
>>>>
>>>> Roman
>>>>
>>>>
>>>> _______________________________________________
>>>> Infra mailing list
>>>> Infra(a)ovirt.org
>>>> http://lists.ovirt.org/mailman/listinfo/infra
>>>>
>>>>
>>>
>>>
>>> --
>>> Sandro Bonazzola
>>> Better technology. Faster innovation. Powered by community collaboration.
>>> See how it works at redhat.com
>>> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
>>>
>>
>>
>>
>> --
>> Sandro Bonazzola
>> Better technology. Faster innovation. Powered by community collaboration.
>> See how it works at redhat.com
>> <https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
>>
>
>
--
Sandro Bonazzola
Better technology. Faster innovation. Powered by community collaboration.
See how it works at redhat.com
<https://www.redhat.com/it/about/events/red-hat-open-source-day-2016>
--
This message was sent by Atlassian JIRA
(v1000.383.2#100014)
8 years, 1 month
oVirt infra daily report - unstable production jobs - 106
by jenkins@jenkins.phx.ovirt.org
------=_Part_526_2131156875.1476399613046
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 7bit
Good morning!
Attached is the HTML page with the jenkins status report. You can see it also here:
- http://jenkins.ovirt.org/job/system_jenkins-report/106//artifact/exported...
Cheers,
Jenkins
------=_Part_526_2131156875.1476399613046
Content-Type: application/octet-stream; name=upstream_report.html
Content-Transfer-Encoding: 7bit
Content-Disposition: attachment; filename=upstream_report.html
Content-ID: <upstream_report.html>
<!DOCTYPE html><head><style type="text/css">
table.gridtable {
border-collapse: collapse;
table-layout:fixed;
width:1600px;
font-family: monospace;
font-size:13px;
}
.head {
font-size:20px;
font-family: arial;
}
.sub {
font-size:18px;
background-color:#e5e5e5;
font-family: arial;
}
pre {
font-family: monospace;
display: inline;
white-space: pre-wrap;
white-space: -moz-pre-wrap !important;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
</style>
</head>
<body>
<table class="gridtable" border=2>
<tr><th colspan=2 class=head>
RHEVM CI Jenkins Daily Report - 13/10/2016
</th></tr><tr><th colspan=2 class=sub>
<font color="blue"><a href="http://jenkins.ovirt.org/">00 Unstable Jobs (Production)</a></font>
</th></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/ovirt-appliance_master_build-artifacts-el7-x...">ovirt-appliance_master_build-artifacts-el7-x86_64</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/ovirt-engine_master_check-merged-el7-x86_64/">ovirt-engine_master_check-merged-el7-x86_64</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/ovirt-engine_master_find-bugs_merged/">ovirt-engine_master_find-bugs_merged</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-from-3.6_el7_mer...">ovirt-engine_master_upgrade-from-3.6_el7_merged</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/ovirt-engine_master_upgrade-from-4.0_el7_mer...">ovirt-engine_master_upgrade-from-4.0_el7_merged</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/ovirt-node-ng_master_build-artifacts-el7-x86...">ovirt-node-ng_master_build-artifacts-el7-x86_64</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/ovirt-node-ng_ovirt-4.0-pre_build-artifacts-...">ovirt-node-ng_ovirt-4.0-pre_build-artifacts-el7-x86_64</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/ovirt-release_master_build-artifacts-all-x86...">ovirt-release_master_build-artifacts-all-x86_64</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/repos_master_check-closure_fc24_merged/">repos_master_check-closure_fc24_merged</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/test-repo_ovirt_experimental_3.6/">test-repo_ovirt_experimental_3.6</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/test-repo_ovirt_experimental_4.0/">test-repo_ovirt_experimental_4.0</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
<tr><td>
<a href="http://jenkins.ovirt.org/job/test-repo_ovirt_experimental_master/">test-repo_ovirt_experimental_master</a>
</td><td>
This job is automatically updated by jenkins job builder, any manual
change will be lost in the next update. If you want to make permanent
changes, check out the <a href="http://gerrit.ovirt.org/gitweb?p=jenkins.git;a=tree;h=refs/heads/master;h...">
jenkins</a> repo.
<!-- Managed by Jenkins Job Builder -->
</td></tr>
------=_Part_526_2131156875.1476399613046--
8 years, 1 month