[2026-06-03 10:04:30,593][ INFO][PID:319817] Marking build as starting [2026-06-03 10:04:30,705][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:04:30,711][ INFO][PID:319817] VM allocation process starts [2026-06-03 10:04:30,780][ INFO][PID:319817] Trying to allocate VM: ResallocHost, ticket_id=3236419, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-03 10:04:35,801][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:04:40,804][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:04:45,808][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:04:50,816][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:04:55,824][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:00,826][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:05,829][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:10,839][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:15,858][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:20,866][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:25,869][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:30,872][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:35,876][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:39,004][ INFO][PID:319817] Allocated host ResallocHost, ticket_id=3236419, hostname=44.222.116.203, name=aws_x86_64_reserved_prod_10483100_20260603_100336, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-03 10:05:39,005][ INFO][PID:319817] Allocating ssh connection to builder [2026-06-03 10:05:39,006][ INFO][PID:319817] Checking that builder machine is OK [2026-06-03 10:05:39,385][ INFO][PID:319817] Installed copr-rpmbuild version: 1.8 [2026-06-03 10:05:39,386][ INFO][PID:319817] Running remote command: copr-builder-ready srpm-builds [2026-06-03 10:05:39,692][ INFO][PID:319817] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-03 10:05:39,693][ INFO][PID:319817] Filling build.info file with builder info [2026-06-03 10:05:39,694][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:39,695][ INFO][PID:319817] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "ocm", "project_name": "tools", "project_dirname": "tools", "submitter": null, "ended_on": null, "started_on": 1780481139.695056, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10552127", "build_id": 10552127, "package_name": "ocm-cli", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"# 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# Set the date:\\ndate=$(date +'%a %b %d %Y')\\n\\n# Generate the .spec file:\\ncat > ocm-cli.spec.in <<\\\".\\\"\\n%global debug_package %{nil}\\n\\nName: ocm-cli\\nVersion: @version@\\nRelease: 1%{?dist}\\nSummary: CLI for the Red Hat OpenShift Cluster Manager\\nLicense: ASL 2.0\\nURL: https://github.com/openshift-online/ocm-cli\\nSource: https://github.com/openshift-online/ocm-cli/archive/v@version@.tar.gz\\n\\n# We need to download Go explicitly because in most of the platforms that we\\n# use the version available is too old.\\n%define go_tar https://go.dev/dl/go1.23.12.linux-amd64.tar.gz\\n%define go_sum d3847fef834e9db11bf64e3fb34db9c04db14e068eeb064f49af747010454f90\\n\\nBuildRequires: curl\\nBuildRequires: git\\nBuildRequires: make\\n\\n%description\\nCLI for the Red Hat OpenShift Cluster Manager\\n\\n%prep\\n%setup\\n\\n%build\\n\\n# Create the Go directories:\\nexport GOROOT=\\\"${PWD}/.goroot\\\"\\nexport GOPATH=\\\"${PWD}/.gopath\\\"\\nmkdir \\\"${GOROOT}\\\" \\\"${GOPATH}\\\"\\nPATH=\\\"${GOROOT}/bin:${PATH}\\\"\\n\\n# Download and install Go:\\ncurl --location --output go.tar.gz %{go_tar}\\necho %{go_sum} go.tar.gz | sha256sum --check\\ntar --directory \\\"${GOROOT}\\\" --extract --strip-components 1 --file go.tar.gz\\n\\n# Build the binary:\\nmake\\n\\n%install\\ninstall -m 0755 -d %{buildroot}%{_bindir}\\ninstall -m 0755 ocm %{buildroot}%{_bindir}\\n\\n%clean\\n# This is necessary because Go writes its cache files and directories without\\n# write permission, and that means that a rgular `rm` can't remove them.\\nfind .gopath -exec chmod +w {} \\\\;\\nrm -rf .gopath\\n\\n%files\\n%license LICENSE.txt\\n%doc README.md\\n%doc CHANGES.md\\n%{_bindir}/*\\n\\n%changelog\\n* @date@ OCM - @version@\\n- Automatic build for version @version@.\\n.\\nsed \\\\\\n -e \\\"s/@version@/${version}/g\\\" \\\\\\n -e \\\"s/@date@/${date}/g\\\" \\\\\\n < ocm-cli.spec.in \\\\\\n > ocm-cli.spec\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"jq\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpn3vt91rl\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "ocm/tools--f34f3334-6dae-43aa-b3bb-ecf0a14c50a5", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "epel-8", "epel-9", "fedora-42", "fedora-43", "fedora-44" ], "distributions_in_project": [ "epel-8", "epel-9", "fedora-42", "fedora-43", "fedora-44" ], "destdir": "/var/lib/copr/public_html/results/ocm/tools", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/ocm/tools", "result_dir": "10552127", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10552127, "mockchain_macros": { "copr_username": "ocm", "copr_projectname": "tools", "vendor": "Fedora Project COPR (ocm/tools)" } } ] } [2026-06-03 10:05:39,740][ INFO][PID:319817] Sending fedora-messaging bus message in build.start [2026-06-03 10:05:40,423][ INFO][PID:319817] Sending fedora-messaging bus message in chroot.start [2026-06-03 10:05:40,456][ INFO][PID:319817] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10552127 --detached [2026-06-03 10:05:41,102][ INFO][PID:319817] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.222.116.203' (ED25519) to the list of known hosts. [2026-06-03 10:05:41,104][ INFO][PID:319817] Downloading the builder-live.log file, attempt 1 [2026-06-03 10:05:41,106][ INFO][PID:319817] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.222.116.203 copr-rpmbuild-log [2026-06-03 10:05:46,122][ INFO][PID:319817] Periodic builder liveness probe: alive [2026-06-03 10:05:46,124][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:51,128][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:05:56,140][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:06:01,148][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:06:06,153][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:06:11,158][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:06:16,163][ INFO][PID:319817] Checking for cancel request [2026-06-03 10:06:17,744][ INFO][PID:319817] Downloading results from builder [2026-06-03 10:06:17,751][ INFO][PID:319817] rsyncing of mockbuilder@44.222.116.203:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/ocm/tools/srpm-builds/10552127 started [2026-06-03 10:06:17,755][ INFO][PID:319817] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.222.116.203:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/ocm/tools/srpm-builds/10552127/ &> /var/lib/copr/public_html/results/ocm/tools/srpm-builds/10552127/build-10552127.rsync.log [2026-06-03 10:06:18,074][ INFO][PID:319817] rsyncing finished. [2026-06-03 10:06:18,079][ INFO][PID:319817] VM Release request [2026-06-03 10:06:18,113][ INFO][PID:319817] Searching for 'success' file in resultdir [2026-06-03 10:06:18,115][ ERROR][PID:319817] Build failed: Backend process error: No success file => build failure [2026-06-03 10:06:18,168][ INFO][PID:319817] Finished build: id=10552127 failed=True timeout=108000 destdir=/var/lib/copr/public_html/results/ocm/tools chroot=srpm-builds [2026-06-03 10:06:18,174][ ERROR][PID:319817] Backend process error: No success file => build failure [2026-06-03 10:06:18,222][ INFO][PID:319817] Worker failed build, took 38.52735424041748 [2026-06-03 10:06:18,228][ INFO][PID:319817] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "ocm", "project_name": "tools", "project_dirname": "tools", "submitter": null, "ended_on": 1780481178.2224102, "started_on": 1780481139.695056, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10552127", "build_id": 10552127, "package_name": "ocm-cli", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"# 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# Set the date:\\ndate=$(date +'%a %b %d %Y')\\n\\n# Generate the .spec file:\\ncat > ocm-cli.spec.in <<\\\".\\\"\\n%global debug_package %{nil}\\n\\nName: ocm-cli\\nVersion: @version@\\nRelease: 1%{?dist}\\nSummary: CLI for the Red Hat OpenShift Cluster Manager\\nLicense: ASL 2.0\\nURL: https://github.com/openshift-online/ocm-cli\\nSource: https://github.com/openshift-online/ocm-cli/archive/v@version@.tar.gz\\n\\n# We need to download Go explicitly because in most of the platforms that we\\n# use the version available is too old.\\n%define go_tar https://go.dev/dl/go1.23.12.linux-amd64.tar.gz\\n%define go_sum d3847fef834e9db11bf64e3fb34db9c04db14e068eeb064f49af747010454f90\\n\\nBuildRequires: curl\\nBuildRequires: git\\nBuildRequires: make\\n\\n%description\\nCLI for the Red Hat OpenShift Cluster Manager\\n\\n%prep\\n%setup\\n\\n%build\\n\\n# Create the Go directories:\\nexport GOROOT=\\\"${PWD}/.goroot\\\"\\nexport GOPATH=\\\"${PWD}/.gopath\\\"\\nmkdir \\\"${GOROOT}\\\" \\\"${GOPATH}\\\"\\nPATH=\\\"${GOROOT}/bin:${PATH}\\\"\\n\\n# Download and install Go:\\ncurl --location --output go.tar.gz %{go_tar}\\necho %{go_sum} go.tar.gz | sha256sum --check\\ntar --directory \\\"${GOROOT}\\\" --extract --strip-components 1 --file go.tar.gz\\n\\n# Build the binary:\\nmake\\n\\n%install\\ninstall -m 0755 -d %{buildroot}%{_bindir}\\ninstall -m 0755 ocm %{buildroot}%{_bindir}\\n\\n%clean\\n# This is necessary because Go writes its cache files and directories without\\n# write permission, and that means that a rgular `rm` can't remove them.\\nfind .gopath -exec chmod +w {} \\\\;\\nrm -rf .gopath\\n\\n%files\\n%license LICENSE.txt\\n%doc README.md\\n%doc CHANGES.md\\n%{_bindir}/*\\n\\n%changelog\\n* @date@ OCM - @version@\\n- Automatic build for version @version@.\\n.\\nsed \\\\\\n -e \\\"s/@version@/${version}/g\\\" \\\\\\n -e \\\"s/@date@/${date}/g\\\" \\\\\\n < ocm-cli.spec.in \\\\\\n > ocm-cli.spec\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"jq\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpn3vt91rl\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "ocm/tools--f34f3334-6dae-43aa-b3bb-ecf0a14c50a5", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "epel-8", "epel-9", "fedora-42", "fedora-43", "fedora-44" ], "distributions_in_project": [ "epel-8", "epel-9", "fedora-42", "fedora-43", "fedora-44" ], "destdir": "/var/lib/copr/public_html/results/ocm/tools", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/ocm/tools", "result_dir": "10552127", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10552127, "mockchain_macros": { "copr_username": "ocm", "copr_projectname": "tools", "vendor": "Fedora Project COPR (ocm/tools)" } } ] } [2026-06-03 10:06:18,324][ INFO][PID:319817] Sending fedora-messaging bus message in build.end [2026-06-03 10:06:18,365][ INFO][PID:319817] Compressing /var/lib/copr/public_html/results/ocm/tools/srpm-builds/10552127/builder-live.log by gzip [2026-06-03 10:06:18,367][ INFO][PID:319817] Running command 'gzip /var/lib/copr/public_html/results/ocm/tools/srpm-builds/10552127/builder-live.log' as PID 339974 [2026-06-03 10:06:18,372][ INFO][PID:319817] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/ocm/tools/srpm-builds/10552127/builder-live.log) [2026-06-03 10:06:18,374][ INFO][PID:319817] Compressing /var/lib/copr/public_html/results/ocm/tools/srpm-builds/10552127/backend.log by gzip [2026-06-03 10:06:18,376][ INFO][PID:319817] Running command 'gzip /var/lib/copr/public_html/results/ocm/tools/srpm-builds/10552127/backend.log' as PID 339978