[2025-07-25 07:47:35,531][ INFO][PID:912476] Marking build as starting [2025-07-25 07:47:35,598][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:47:35,605][ INFO][PID:912476] VM allocation process starts [2025-07-25 07:47:35,717][ INFO][PID:912476] Trying to allocate VM: ResallocHost, ticket_id=4122457, requested_tags=['copr_builder', 'arch_x86_64'] [2025-07-25 07:47:40,729][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:47:45,738][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:47:50,743][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:47:55,748][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:00,754][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:05,756][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:10,762][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:15,773][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:20,775][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:23,930][ INFO][PID:912476] Allocated host ResallocHost, ticket_id=4122457, hostname=2620:52:3:1:dead:beef:cafe:c1cf, name=copr_hv_x86_64_04_prod_05865784_20250725_074521, requested_tags=['copr_builder', 'arch_x86_64'] [2025-07-25 07:48:23,932][ INFO][PID:912476] Allocating ssh connection to builder [2025-07-25 07:48:23,933][ INFO][PID:912476] Checking that builder machine is OK [2025-07-25 07:48:24,551][ INFO][PID:912476] Running remote command: copr-builder-ready srpm-builds [2025-07-25 07:48:24,884][ INFO][PID:912476] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-07-25 07:48:24,885][ INFO][PID:912476] Filling build.info file with builder info [2025-07-25 07:48:24,886][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:24,888][ INFO][PID:912476] 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": 1753429704.8878057, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9327480", "build_id": 9327480, "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\": \"jq sed\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpshowq0rv\", \"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--38b6b630-0709-4efb-8810-40985a06df61", "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": "09327480", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9327480, "mockchain_macros": { "copr_username": "monad", "copr_projectname": "osdctl", "vendor": "Fedora Project COPR (monad/osdctl)" } } ] } [2025-07-25 07:48:24,913][ INFO][PID:912476] Sending fedora-messaging bus message in build.start [2025-07-25 07:48:26,307][ INFO][PID:912476] Sending fedora-messaging bus message in chroot.start [2025-07-25 07:48:26,367][ INFO][PID:912476] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9327480 --detached [2025-07-25 07:48:26,995][ INFO][PID:912476] Downloading the builder-live.log file, attempt 1 [2025-07-25 07:48:27,005][ INFO][PID:912476] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:3:1:dead:beef:cafe:c1cf copr-rpmbuild-log [2025-07-25 07:48:32,013][ INFO][PID:912476] Periodic builder liveness probe: alive [2025-07-25 07:48:32,016][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:37,025][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:42,033][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:47,034][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:52,040][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:48:57,045][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:49:02,053][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:49:07,056][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:49:12,058][ INFO][PID:912476] Checking for cancel request [2025-07-25 07:49:15,992][ INFO][PID:912476] Downloading results from builder [2025-07-25 07:49:15,993][ INFO][PID:912476] rsyncing of mockbuilder@[2620:52:3:1:dead:beef:cafe:c1cf]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09327480 started [2025-07-25 07:49:15,998][ INFO][PID:912476] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:3:1:dead:beef:cafe:c1cf]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09327480/ &> /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09327480/build-09327480.rsync.log [2025-07-25 07:49:16,386][ INFO][PID:912476] rsyncing finished. [2025-07-25 07:49:16,387][ INFO][PID:912476] Releasing VM back to pool [2025-07-25 07:49:16,405][ INFO][PID:912476] Searching for 'success' file in resultdir [2025-07-25 07:49:16,406][ ERROR][PID:912476] Build failed: Backend process error: No success file => build failure [2025-07-25 07:49:16,408][ INFO][PID:912476] Finished build: id=9327480 failed=True timeout=108000 destdir=/var/lib/copr/public_html/results/monad/osdctl chroot=srpm-builds [2025-07-25 07:49:16,412][ ERROR][PID:912476] Backend process error: No success file => build failure [2025-07-25 07:49:16,414][ INFO][PID:912476] Worker failed build, took 51.526254177093506 [2025-07-25 07:49:16,415][ INFO][PID:912476] 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": 1753429756.4140599, "started_on": 1753429704.8878057, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9327480", "build_id": 9327480, "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\": \"jq sed\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpshowq0rv\", \"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--38b6b630-0709-4efb-8810-40985a06df61", "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": "09327480", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9327480, "mockchain_macros": { "copr_username": "monad", "copr_projectname": "osdctl", "vendor": "Fedora Project COPR (monad/osdctl)" } } ] } [2025-07-25 07:49:16,450][ INFO][PID:912476] Sending fedora-messaging bus message in build.end [2025-07-25 07:49:16,498][ INFO][PID:912476] Compressing /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09327480/builder-live.log by gzip [2025-07-25 07:49:16,502][ INFO][PID:912476] Running command 'gzip /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09327480/builder-live.log' as PID 931862 [2025-07-25 07:49:16,508][ INFO][PID:912476] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09327480/builder-live.log) [2025-07-25 07:49:16,510][ INFO][PID:912476] Compressing /var/lib/copr/public_html/results/monad/osdctl/srpm-builds/09327480/backend.log by gzip