[2025-07-25 07:33:54,414][ INFO][PID:756913] Marking build as starting [2025-07-25 07:33:54,451][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:33:54,460][ INFO][PID:756913] VM allocation process starts [2025-07-25 07:33:54,501][ INFO][PID:756913] Trying to allocate VM: ResallocHost, ticket_id=4121523, requested_tags=['copr_builder', 'arch_x86_64'] [2025-07-25 07:33:59,510][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:04,515][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:09,527][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:14,536][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:19,539][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:24,547][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:29,555][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:34,557][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:39,563][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:44,574][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:49,585][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:54,598][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:34:59,616][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:04,620][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:09,621][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:14,623][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:19,630][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:22,868][ INFO][PID:756913] Allocated host ResallocHost, ticket_id=4121523, hostname=3.95.194.157, name=aws_x86_64_normalreserved_prod_05865437_20250725_073235, requested_tags=['copr_builder', 'arch_x86_64'] [2025-07-25 07:35:22,869][ INFO][PID:756913] Allocating ssh connection to builder [2025-07-25 07:35:22,869][ INFO][PID:756913] Checking that builder machine is OK [2025-07-25 07:35:23,332][ INFO][PID:756913] Running remote command: copr-builder-ready srpm-builds [2025-07-25 07:35:23,603][ INFO][PID:756913] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-07-25 07:35:23,603][ INFO][PID:756913] Filling build.info file with builder info [2025-07-25 07:35:23,604][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:23,608][ INFO][PID:756913] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "monad", "project_name": "osdctl", "project_dirname": "osdctl", "submitter": null, "ended_on": null, "started_on": 1753428923.6055646, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9326919", "build_id": 9326919, "package_name": "osdctl", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env sh\\n\\n# Check that the event payload exists:\\nif [[ ! -f hook_payload ]]; then\\n echo \\\"Event payload file 'hook_payload' doesn't exist\\\"\\n exit 1\\nfi\\n\\n# Check that the event is the creation of a tag:\\nref_type=$(cat hook_payload | jq -r .ref_type)\\nif [[ \\\"${ref_type}\\\" != \\\"tag\\\" ]]; then\\n echo \\\"Expected reference type 'tag' but got '${ref_type}'\\\"\\n exit 1\\nfi\\n\\n# Check that the tag is well formed:\\nref=$(cat hook_payload | jq -r .ref)\\nif [[ ! \\\"${ref}\\\" =~ ^v[0-9]+\\\\.[0-9]+\\\\.[0-9]+$ ]]; then\\n echo \\\"Reference '${ref}' isn't well formed\\\"\\n exit 1\\nfi\\n\\n# Set the version to use:\\nversion=\\\"${ref:1}\\\"\\n\\n# Generate the .spec file:\\ncat > osdctl.spec.in <<\\\".\\\"\\n# Generated by go2rpm 1.15.0\\n%bcond check 1\\n%bcond bootstrap 0\\n\\n%if %{with bootstrap}\\n%global debug_package %{nil}\\n%endif\\n\\n%if %{with bootstrap}\\n%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^golang\\\\\\\\(.*\\\\\\\\)$\\n%endif\\n\\n# https://github.com/openshift/osdctl\\n%global goipath github.com/openshift/osdctl\\n\\n%global common_description %{expand:\\nCLI for the OSD utilities.}\\n\\n%global golicenses LICENSE\\n%global godocs README.md\\n\\nBuildRequires: git\\nName: osdctl\\nRelease: %autorelease\\nSummary: CLI for the OSD utilities\\nLicense: Apache-2.0\\nURL: https://github.com/bergmannf/osdctl\\nVersion: @version@\\nSource: %{url}/archive/v%{version}/osdctl-%{version}.tar.gz\\n\\n# REMOVE BEFORE SUBMITTING THIS FOR REVIEW\\n# ---\\n# New Fedora packages should use %%gometa -f, which makes the package\\n# ExclusiveArch to %%golang_arches_future and thus excludes the package from\\n# %%ix86. If the new package is needed as a dependency for another package,\\n# please consider removing that package from %%ix86 in the same way, instead of\\n# building more go packages for i686. If your package is not a leaf package,\\n# you'll need to coordinate the removal of the package's dependents first.\\n# ---\\n# REMOVE BEFORE SUBMITTING THIS FOR REVIEW\\n%gometa -L -f\\n\\n%description %{common_description}\\n\\n%gopkg\\n\\n%prep\\n%goprep -A\\n\\n%if %{without bootstrap}\\n%generate_buildrequires\\n# %go_generate_buildrequires\\n%endif\\n\\n%if %{without bootstrap}\\n%define gomodulesmode GO111MODULE=on\\n%build\\n%gobuild -o %{gobuilddir}/bin/osdctl %{goipath}\\n%endif\\n\\n%install\\n%gopkginstall\\n%if %{without bootstrap}\\ninstall -m 0755 -vd %{buildroot}%{_bindir}\\ninstall -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/\\n%endif\\n\\n%if %{without bootstrap}\\n%if %{with check}\\n%endif\\n%endif\\n\\n%if %{without bootstrap}\\n%files\\n%license LICENSE\\n%doc README.md\\n%{_bindir}/osdctl\\n%endif\\n\\n%gopkgfiles\\n\\n%changelog\\n%autochangelog\\n.\\nsed \\\\\\n -e \\\"s/@version@/${version}/g\\\" \\\\\\n < osdctl.spec.in \\\\\\n > osdctl.spec\\n\", \"chroot\": \"fedora-42-x86_64\", \"builddeps\": \"\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpyw9y3zep\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "monad/osdctl--f700babb-b1b6-4e0d-9e9b-98bcd4a0865e", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/monad/osdctl", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/monad/osdctl", "result_dir": "09326919", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9326919, "mockchain_macros": { "copr_username": "monad", "copr_projectname": "osdctl", "vendor": "Fedora Project COPR (monad/osdctl)" } } ] } [2025-07-25 07:35:23,640][ INFO][PID:756913] Sending fedora-messaging bus message in build.start [2025-07-25 07:35:27,267][ INFO][PID:756913] Sending fedora-messaging bus message in chroot.start [2025-07-25 07:35:27,376][ INFO][PID:756913] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9326919 --detached [2025-07-25 07:35:27,819][ INFO][PID:756913] Downloading the builder-live.log file, attempt 1 [2025-07-25 07:35:27,825][ INFO][PID:756913] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.95.194.157 copr-rpmbuild-log [2025-07-25 07:35:33,061][ INFO][PID:756913] Periodic builder liveness probe: alive [2025-07-25 07:35:33,064][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:38,071][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:43,079][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:48,083][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:53,087][ INFO][PID:756913] Checking for cancel request [2025-07-25 07:35:54,604][ INFO][PID:756913] Downloading results from builder [2025-07-25 07:35:54,606][ INFO][PID:756913] rsyncing of mockbuilder@3.95.194.157:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09326919 started [2025-07-25 07:35:54,608][ INFO][PID:756913] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.95.194.157:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09326919/ &> /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09326919/build-09326919.rsync.log [2025-07-25 07:35:55,008][ INFO][PID:756913] rsyncing finished. [2025-07-25 07:35:55,011][ INFO][PID:756913] Releasing VM back to pool [2025-07-25 07:35:55,054][ INFO][PID:756913] Searching for 'success' file in resultdir [2025-07-25 07:35:55,059][ ERROR][PID:756913] Build failed: Backend process error: No success file => build failure [2025-07-25 07:35:55,065][ INFO][PID:756913] Finished build: id=9326919 failed=True timeout=108000 destdir=/var/lib/copr/public_html/results/monad/osdctl chroot=srpm-builds [2025-07-25 07:35:55,087][ ERROR][PID:756913] Backend process error: No success file => build failure [2025-07-25 07:35:55,088][ INFO][PID:756913] Worker failed build, took 31.482673168182373 [2025-07-25 07:35:55,089][ INFO][PID:756913] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "monad", "project_name": "osdctl", "project_dirname": "osdctl", "submitter": null, "ended_on": 1753428955.0882378, "started_on": 1753428923.6055646, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9326919", "build_id": 9326919, "package_name": "osdctl", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env sh\\n\\n# Check that the event payload exists:\\nif [[ ! -f hook_payload ]]; then\\n echo \\\"Event payload file 'hook_payload' doesn't exist\\\"\\n exit 1\\nfi\\n\\n# Check that the event is the creation of a tag:\\nref_type=$(cat hook_payload | jq -r .ref_type)\\nif [[ \\\"${ref_type}\\\" != \\\"tag\\\" ]]; then\\n echo \\\"Expected reference type 'tag' but got '${ref_type}'\\\"\\n exit 1\\nfi\\n\\n# Check that the tag is well formed:\\nref=$(cat hook_payload | jq -r .ref)\\nif [[ ! \\\"${ref}\\\" =~ ^v[0-9]+\\\\.[0-9]+\\\\.[0-9]+$ ]]; then\\n echo \\\"Reference '${ref}' isn't well formed\\\"\\n exit 1\\nfi\\n\\n# Set the version to use:\\nversion=\\\"${ref:1}\\\"\\n\\n# Generate the .spec file:\\ncat > osdctl.spec.in <<\\\".\\\"\\n# Generated by go2rpm 1.15.0\\n%bcond check 1\\n%bcond bootstrap 0\\n\\n%if %{with bootstrap}\\n%global debug_package %{nil}\\n%endif\\n\\n%if %{with bootstrap}\\n%global __requires_exclude %{?__requires_exclude:%{__requires_exclude}|}^golang\\\\\\\\(.*\\\\\\\\)$\\n%endif\\n\\n# https://github.com/openshift/osdctl\\n%global goipath github.com/openshift/osdctl\\n\\n%global common_description %{expand:\\nCLI for the OSD utilities.}\\n\\n%global golicenses LICENSE\\n%global godocs README.md\\n\\nBuildRequires: git\\nName: osdctl\\nRelease: %autorelease\\nSummary: CLI for the OSD utilities\\nLicense: Apache-2.0\\nURL: https://github.com/bergmannf/osdctl\\nVersion: @version@\\nSource: %{url}/archive/v%{version}/osdctl-%{version}.tar.gz\\n\\n# REMOVE BEFORE SUBMITTING THIS FOR REVIEW\\n# ---\\n# New Fedora packages should use %%gometa -f, which makes the package\\n# ExclusiveArch to %%golang_arches_future and thus excludes the package from\\n# %%ix86. If the new package is needed as a dependency for another package,\\n# please consider removing that package from %%ix86 in the same way, instead of\\n# building more go packages for i686. If your package is not a leaf package,\\n# you'll need to coordinate the removal of the package's dependents first.\\n# ---\\n# REMOVE BEFORE SUBMITTING THIS FOR REVIEW\\n%gometa -L -f\\n\\n%description %{common_description}\\n\\n%gopkg\\n\\n%prep\\n%goprep -A\\n\\n%if %{without bootstrap}\\n%generate_buildrequires\\n# %go_generate_buildrequires\\n%endif\\n\\n%if %{without bootstrap}\\n%define gomodulesmode GO111MODULE=on\\n%build\\n%gobuild -o %{gobuilddir}/bin/osdctl %{goipath}\\n%endif\\n\\n%install\\n%gopkginstall\\n%if %{without bootstrap}\\ninstall -m 0755 -vd %{buildroot}%{_bindir}\\ninstall -m 0755 -vp %{gobuilddir}/bin/* %{buildroot}%{_bindir}/\\n%endif\\n\\n%if %{without bootstrap}\\n%if %{with check}\\n%endif\\n%endif\\n\\n%if %{without bootstrap}\\n%files\\n%license LICENSE\\n%doc README.md\\n%{_bindir}/osdctl\\n%endif\\n\\n%gopkgfiles\\n\\n%changelog\\n%autochangelog\\n.\\nsed \\\\\\n -e \\\"s/@version@/${version}/g\\\" \\\\\\n < osdctl.spec.in \\\\\\n > osdctl.spec\\n\", \"chroot\": \"fedora-42-x86_64\", \"builddeps\": \"\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpyw9y3zep\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "monad/osdctl--f700babb-b1b6-4e0d-9e9b-98bcd4a0865e", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/monad/osdctl", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/monad/osdctl", "result_dir": "09326919", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9326919, "mockchain_macros": { "copr_username": "monad", "copr_projectname": "osdctl", "vendor": "Fedora Project COPR (monad/osdctl)" } } ] } [2025-07-25 07:35:55,139][ INFO][PID:756913] Sending fedora-messaging bus message in build.end [2025-07-25 07:35:55,188][ INFO][PID:756913] Compressing /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09326919/builder-live.log by gzip [2025-07-25 07:35:55,197][ INFO][PID:756913] Running command 'gzip /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09326919/builder-live.log' as PID 781346 [2025-07-25 07:35:55,212][ INFO][PID:756913] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09326919/builder-live.log) [2025-07-25 07:35:55,214][ INFO][PID:756913] Compressing /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09326919/backend.log by gzip [2025-07-25 07:35:55,225][ INFO][PID:756913] Running command 'gzip /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09326919/backend.log' as PID 781353