[2026-09-08 03:11:27,968][ INFO][PID:2946199] Marking build as starting [2026-09-08 03:11:28,000][ INFO][PID:2946199] Checking for cancel request [2026-09-08 03:11:28,001][ INFO][PID:2946199] VM allocation process starts [2026-09-08 03:11:28,007][ INFO][PID:2946199] Trying to allocate VM: ResallocHost, ticket_id=4891857, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-08 03:11:31,040][ INFO][PID:2946199] Allocated host ResallocHost, ticket_id=4891857, hostname=18.209.60.56, name=aws_x86_64_reserved_prod_31351565_20260908_030842, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-08 03:11:31,041][ INFO][PID:2946199] Allocating ssh connection to builder [2026-09-08 03:11:31,041][ INFO][PID:2946199] Checking that builder machine is OK [2026-09-08 03:11:31,331][ INFO][PID:2946199] Installed copr-rpmbuild version: 1.9 [2026-09-08 03:11:31,331][ INFO][PID:2946199] Running remote command: copr-builder-ready srpm-builds [2026-09-08 03:11:31,492][ INFO][PID:2946199] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-08 03:11:31,492][ INFO][PID:2946199] Filling build.info file with builder info [2026-09-08 03:11:31,493][ INFO][PID:2946199] Checking for cancel request [2026-09-08 03:11:31,493][ INFO][PID:2946199] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "clemperorpenguin", "project_name": "AlmanacOS", "project_dirname": "AlmanacOS", "submitter": "clemperorpenguin", "ended_on": null, "started_on": 1788837091.493406, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10958618", "build_id": 10958618, "package_name": "ripwire", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/bin/bash\\n# COPR \\\"Custom\\\" source-method script for ripwire. Resolves the newest upstream release\\n# tag at build time, so a rebuild picks up a new release with no edits here.\\n#\\n# COPR package settings that go with it (see README.md):\\n# Build dependencies: bash coreutils curl jq tar sed findutils rpm-build git-core\\n# Chroot: fedora-latest-x86_64 Result directory: (empty)\\n# COPR caps this script at 4 kB \\u2014 keep it terse; rationale belongs in README.md.\\n#\\n# Local run, the same way COPR does it: COPR_RESULTDIR=./out ./copr-custom-script.sh\\n\\nset -euo pipefail\\n\\nUPSTREAM_REPO=\\\"${UPSTREAM_REPO:-redhat-et/ripwire}\\\"\\n# Empty SPEC_URL falls back to a ripwire.spec beside this script (local runs).\\nSPEC_URL=\\\"${SPEC_URL:-https://raw.githubusercontent.com/AlmanacOS/ripwire-rpm/main/ripwire.spec}\\\"\\n\\nresultdir=\\\"${COPR_RESULTDIR:-$PWD}\\\"\\nworkdir=\\\"$(mktemp -d)\\\"\\ntrap 'rm -rf \\\"$workdir\\\"' EXIT\\nmkdir -p \\\"$resultdir\\\" \\\"$workdir/SOURCES\\\"\\n\\nsay() { printf '==> %s\\\\n' \\\"$*\\\" >&2; }\\n\\n# ---- newest release tag ----\\n# /releases/latest skips drafts and prereleases; fall back to the newest plain tag.\\napi=\\\"https://api.github.com/repos/${UPSTREAM_REPO}\\\"\\nauth=()\\n[ -n \\\"${GITHUB_TOKEN:-}\\\" ] && auth=(-H \\\"Authorization: Bearer ${GITHUB_TOKEN}\\\")\\n\\ntag=\\\"$(curl -fsSL \\\"${auth[@]}\\\" \\\"${api}/releases/latest\\\" | jq -r '.tag_name // empty')\\\"\\nif [ -z \\\"$tag\\\" ]; then\\n say \\\"no published release; using the newest tag\\\"\\n tag=\\\"$(curl -fsSL \\\"${auth[@]}\\\" \\\"${api}/tags\\\" | jq -r '.[0].name // empty')\\\"\\nfi\\n[ -n \\\"$tag\\\" ] || { echo \\\"no release tag for ${UPSTREAM_REPO}\\\" >&2; exit 1; }\\n\\nversion=\\\"${tag#v}\\\"\\nsay \\\"upstream tag ${tag} -> version ${version}\\\"\\n# Anything but a plain dotted version would make an invalid RPM Version.\\ncase \\\"$version\\\" in\\n *[!0-9.]*|''|.*|*.) echo \\\"tag '${tag}' is not a plain x.y.z version\\\" >&2; exit 1 ;;\\nesac\\n\\n# ---- spec ----\\nspec=\\\"${workdir}/ripwire.spec\\\"\\nif [ -n \\\"$SPEC_URL\\\" ]; then\\n say \\\"fetching spec from ${SPEC_URL}\\\"\\n curl -fsSL \\\"$SPEC_URL\\\" -o \\\"$spec\\\"\\nelse\\n here=\\\"$(cd \\\"$(dirname \\\"${BASH_SOURCE[0]}\\\")\\\" && pwd)\\\"\\n [ -f \\\"${here}/ripwire.spec\\\" ] || { echo \\\"no SPEC_URL and no local spec\\\" >&2; exit 1; }\\n say \\\"using ${here}/ripwire.spec\\\"\\n cp \\\"${here}/ripwire.spec\\\" \\\"$spec\\\"\\nfi\\n\\nsed -i -e \\\"s/^Version:.*/Version: ${version}/\\\" \\\\\\n -e \\\"s/^Release:.*/Release: 1%{?dist}/\\\" \\\"$spec\\\"\\ngrep -q \\\"^Version: ${version}\\\\$\\\" \\\"$spec\\\" || { echo \\\"Version: not set\\\" >&2; exit 1; }\\n\\n# ---- sources ----\\ntarball=\\\"${workdir}/SOURCES/ripwire-${version}.tar.gz\\\"\\nurl=\\\"https://github.com/${UPSTREAM_REPO}/archive/${tag}/ripwire-${version}.tar.gz\\\"\\nsay \\\"downloading ${url}\\\"\\ncurl -fsSL \\\"$url\\\" -o \\\"$tarball\\\"\\n\\n# Subshell so `set +o pipefail` stays local: head exits after one line, tar takes\\n# SIGPIPE, and under pipefail that 141 would trip set -e.\\ntop=\\\"$(set +o pipefail; tar tzf \\\"$tarball\\\" | head -1 | cut -d/ -f1)\\\"\\nif [ \\\"$top\\\" != \\\"ripwire-${version}\\\" ]; then\\n say \\\"repacking ${top}/ as ripwire-${version}/\\\"\\n tar xzf \\\"$tarball\\\" -C \\\"$workdir\\\"\\n mv \\\"${workdir}/${top}\\\" \\\"${workdir}/ripwire-${version}\\\"\\n tar czf \\\"$tarball\\\" -C \\\"$workdir\\\" \\\"ripwire-${version}\\\"\\n rm -rf \\\"${workdir:?}/ripwire-${version}\\\"\\nfi\\n\\n# ---- srpm ----\\nsay \\\"building srpm\\\"\\nrpmbuild -bs \\\"$spec\\\" \\\\\\n --define \\\"_topdir ${workdir}\\\" \\\\\\n --define \\\"_sourcedir ${workdir}/SOURCES\\\" \\\\\\n --define \\\"_srcrpmdir ${resultdir}\\\" \\\\\\n --define \\\"dist %{nil}\\\"\\n\", \"chroot\": \"fedora-45-x86_64\", \"builddeps\": \"bash coreutils curl jq tar sed findutils rpm-build git-core\", \"resultdir\": null, \"repos\": \"\", \"fedora_review\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "clemperorpenguin/AlmanacOS--clemperorpenguin", "results": null, "appstream": true, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": false, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "rhel+epel-10" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "rhel+epel-10" ], "destdir": "/var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/clemperorpenguin/AlmanacOS", "result_dir": "10958618", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10958618, "mockchain_macros": { "copr_username": "clemperorpenguin", "copr_projectname": "AlmanacOS", "vendor": "Fedora Project COPR (clemperorpenguin/AlmanacOS)" } } ] } [2026-09-08 03:11:31,518][ INFO][PID:2946199] Sending fedora-messaging bus message in build.start [2026-09-08 03:11:31,872][ INFO][PID:2946199] Sending fedora-messaging bus message in chroot.start [2026-09-08 03:11:31,892][ INFO][PID:2946199] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10958618 --detached [2026-09-08 03:11:32,350][ INFO][PID:2946199] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '18.209.60.56' (ED25519) to the list of known hosts. [2026-09-08 03:11:32,351][ INFO][PID:2946199] Downloading the builder-live.log file, attempt 1 [2026-09-08 03:11:32,352][ INFO][PID:2946199] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@18.209.60.56 copr-rpmbuild-log [2026-09-08 03:11:37,357][ INFO][PID:2946199] Periodic builder liveness probe: alive [2026-09-08 03:11:37,357][ INFO][PID:2946199] Checking for cancel request [2026-09-08 03:11:42,358][ INFO][PID:2946199] Checking for cancel request [2026-09-08 03:11:47,359][ INFO][PID:2946199] Checking for cancel request [2026-09-08 03:11:52,360][ INFO][PID:2946199] Checking for cancel request [2026-09-08 03:11:57,361][ INFO][PID:2946199] Checking for cancel request [2026-09-08 03:12:02,361][ INFO][PID:2946199] Checking for cancel request [2026-09-08 03:12:05,924][ INFO][PID:2946199] Downloading results from builder [2026-09-08 03:12:05,924][ INFO][PID:2946199] rsyncing of mockbuilder@18.209.60.56:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS/srpm-builds/10958618 started [2026-09-08 03:12:05,925][ INFO][PID:2946199] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@18.209.60.56:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS/srpm-builds/10958618/ &> /var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS/srpm-builds/10958618/build-10958618.rsync.log [2026-09-08 03:12:06,102][ INFO][PID:2946199] rsyncing finished. [2026-09-08 03:12:06,102][ INFO][PID:2946199] VM Release request [2026-09-08 03:12:06,108][ INFO][PID:2946199] Searching for 'success' file in resultdir [2026-09-08 03:12:06,108][ ERROR][PID:2946199] Build failed: Backend process error: No success file => build failure [2026-09-08 03:12:06,112][ INFO][PID:2946199] Finished build: id=10958618 failed=True timeout=108000 destdir=/var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS chroot=srpm-builds [2026-09-08 03:12:06,113][ ERROR][PID:2946199] Backend process error: No success file => build failure [2026-09-08 03:12:06,116][ INFO][PID:2946199] Worker failed build, took 34.622700214385986 [2026-09-08 03:12:06,116][ INFO][PID:2946199] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "clemperorpenguin", "project_name": "AlmanacOS", "project_dirname": "AlmanacOS", "submitter": "clemperorpenguin", "ended_on": 1788837126.1161063, "started_on": 1788837091.493406, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10958618", "build_id": 10958618, "package_name": "ripwire", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/bin/bash\\n# COPR \\\"Custom\\\" source-method script for ripwire. Resolves the newest upstream release\\n# tag at build time, so a rebuild picks up a new release with no edits here.\\n#\\n# COPR package settings that go with it (see README.md):\\n# Build dependencies: bash coreutils curl jq tar sed findutils rpm-build git-core\\n# Chroot: fedora-latest-x86_64 Result directory: (empty)\\n# COPR caps this script at 4 kB \\u2014 keep it terse; rationale belongs in README.md.\\n#\\n# Local run, the same way COPR does it: COPR_RESULTDIR=./out ./copr-custom-script.sh\\n\\nset -euo pipefail\\n\\nUPSTREAM_REPO=\\\"${UPSTREAM_REPO:-redhat-et/ripwire}\\\"\\n# Empty SPEC_URL falls back to a ripwire.spec beside this script (local runs).\\nSPEC_URL=\\\"${SPEC_URL:-https://raw.githubusercontent.com/AlmanacOS/ripwire-rpm/main/ripwire.spec}\\\"\\n\\nresultdir=\\\"${COPR_RESULTDIR:-$PWD}\\\"\\nworkdir=\\\"$(mktemp -d)\\\"\\ntrap 'rm -rf \\\"$workdir\\\"' EXIT\\nmkdir -p \\\"$resultdir\\\" \\\"$workdir/SOURCES\\\"\\n\\nsay() { printf '==> %s\\\\n' \\\"$*\\\" >&2; }\\n\\n# ---- newest release tag ----\\n# /releases/latest skips drafts and prereleases; fall back to the newest plain tag.\\napi=\\\"https://api.github.com/repos/${UPSTREAM_REPO}\\\"\\nauth=()\\n[ -n \\\"${GITHUB_TOKEN:-}\\\" ] && auth=(-H \\\"Authorization: Bearer ${GITHUB_TOKEN}\\\")\\n\\ntag=\\\"$(curl -fsSL \\\"${auth[@]}\\\" \\\"${api}/releases/latest\\\" | jq -r '.tag_name // empty')\\\"\\nif [ -z \\\"$tag\\\" ]; then\\n say \\\"no published release; using the newest tag\\\"\\n tag=\\\"$(curl -fsSL \\\"${auth[@]}\\\" \\\"${api}/tags\\\" | jq -r '.[0].name // empty')\\\"\\nfi\\n[ -n \\\"$tag\\\" ] || { echo \\\"no release tag for ${UPSTREAM_REPO}\\\" >&2; exit 1; }\\n\\nversion=\\\"${tag#v}\\\"\\nsay \\\"upstream tag ${tag} -> version ${version}\\\"\\n# Anything but a plain dotted version would make an invalid RPM Version.\\ncase \\\"$version\\\" in\\n *[!0-9.]*|''|.*|*.) echo \\\"tag '${tag}' is not a plain x.y.z version\\\" >&2; exit 1 ;;\\nesac\\n\\n# ---- spec ----\\nspec=\\\"${workdir}/ripwire.spec\\\"\\nif [ -n \\\"$SPEC_URL\\\" ]; then\\n say \\\"fetching spec from ${SPEC_URL}\\\"\\n curl -fsSL \\\"$SPEC_URL\\\" -o \\\"$spec\\\"\\nelse\\n here=\\\"$(cd \\\"$(dirname \\\"${BASH_SOURCE[0]}\\\")\\\" && pwd)\\\"\\n [ -f \\\"${here}/ripwire.spec\\\" ] || { echo \\\"no SPEC_URL and no local spec\\\" >&2; exit 1; }\\n say \\\"using ${here}/ripwire.spec\\\"\\n cp \\\"${here}/ripwire.spec\\\" \\\"$spec\\\"\\nfi\\n\\nsed -i -e \\\"s/^Version:.*/Version: ${version}/\\\" \\\\\\n -e \\\"s/^Release:.*/Release: 1%{?dist}/\\\" \\\"$spec\\\"\\ngrep -q \\\"^Version: ${version}\\\\$\\\" \\\"$spec\\\" || { echo \\\"Version: not set\\\" >&2; exit 1; }\\n\\n# ---- sources ----\\ntarball=\\\"${workdir}/SOURCES/ripwire-${version}.tar.gz\\\"\\nurl=\\\"https://github.com/${UPSTREAM_REPO}/archive/${tag}/ripwire-${version}.tar.gz\\\"\\nsay \\\"downloading ${url}\\\"\\ncurl -fsSL \\\"$url\\\" -o \\\"$tarball\\\"\\n\\n# Subshell so `set +o pipefail` stays local: head exits after one line, tar takes\\n# SIGPIPE, and under pipefail that 141 would trip set -e.\\ntop=\\\"$(set +o pipefail; tar tzf \\\"$tarball\\\" | head -1 | cut -d/ -f1)\\\"\\nif [ \\\"$top\\\" != \\\"ripwire-${version}\\\" ]; then\\n say \\\"repacking ${top}/ as ripwire-${version}/\\\"\\n tar xzf \\\"$tarball\\\" -C \\\"$workdir\\\"\\n mv \\\"${workdir}/${top}\\\" \\\"${workdir}/ripwire-${version}\\\"\\n tar czf \\\"$tarball\\\" -C \\\"$workdir\\\" \\\"ripwire-${version}\\\"\\n rm -rf \\\"${workdir:?}/ripwire-${version}\\\"\\nfi\\n\\n# ---- srpm ----\\nsay \\\"building srpm\\\"\\nrpmbuild -bs \\\"$spec\\\" \\\\\\n --define \\\"_topdir ${workdir}\\\" \\\\\\n --define \\\"_sourcedir ${workdir}/SOURCES\\\" \\\\\\n --define \\\"_srcrpmdir ${resultdir}\\\" \\\\\\n --define \\\"dist %{nil}\\\"\\n\", \"chroot\": \"fedora-45-x86_64\", \"builddeps\": \"bash coreutils curl jq tar sed findutils rpm-build git-core\", \"resultdir\": null, \"repos\": \"\", \"fedora_review\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "clemperorpenguin/AlmanacOS--clemperorpenguin", "results": null, "appstream": true, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": false, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "rhel+epel-10" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "rhel+epel-10" ], "destdir": "/var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/clemperorpenguin/AlmanacOS", "result_dir": "10958618", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10958618, "mockchain_macros": { "copr_username": "clemperorpenguin", "copr_projectname": "AlmanacOS", "vendor": "Fedora Project COPR (clemperorpenguin/AlmanacOS)" } } ] } [2026-09-08 03:12:06,151][ INFO][PID:2946199] Sending fedora-messaging bus message in build.end [2026-09-08 03:12:06,170][ INFO][PID:2946199] Compressing /var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS/srpm-builds/10958618/builder-live.log by gzip [2026-09-08 03:12:06,171][ INFO][PID:2946199] Running command 'gzip /var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS/srpm-builds/10958618/builder-live.log' as PID 2953416 [2026-09-08 03:12:06,173][ INFO][PID:2946199] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS/srpm-builds/10958618/builder-live.log) [2026-09-08 03:12:06,174][ INFO][PID:2946199] Compressing /var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS/srpm-builds/10958618/backend.log by gzip [2026-09-08 03:12:06,174][ INFO][PID:2946199] Running command 'gzip /var/lib/copr/public_html/results/clemperorpenguin/AlmanacOS/srpm-builds/10958618/backend.log' as PID 2953417