[2026-08-10 19:35:43,369][ INFO][PID:2683971] Marking build as starting [2026-08-10 19:35:43,410][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:35:43,411][ INFO][PID:2683971] VM allocation process starts [2026-08-10 19:35:43,421][ INFO][PID:2683971] Trying to allocate VM: ResallocHost, ticket_id=4382276, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-10 19:35:46,442][ INFO][PID:2683971] Allocated host ResallocHost, ticket_id=4382276, hostname=54.87.36.62, name=aws_x86_64_reserved_prod_17695378_20260810_193105, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-10 19:35:46,443][ INFO][PID:2683971] Allocating ssh connection to builder [2026-08-10 19:35:46,443][ INFO][PID:2683971] Checking that builder machine is OK [2026-08-10 19:35:46,800][ INFO][PID:2683971] Installed copr-rpmbuild version: 1.8 [2026-08-10 19:35:46,801][ INFO][PID:2683971] Running remote command: copr-builder-ready srpm-builds [2026-08-10 19:35:46,993][ INFO][PID:2683971] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-10 19:35:46,994][ INFO][PID:2683971] Filling build.info file with builder info [2026-08-10 19:35:46,994][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:35:46,996][ INFO][PID:2683971] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "lizardbyte", "project_name": "pulls", "project_dirname": "pulls:pr:5368", "submitter": null, "ended_on": null, "started_on": 1786390546.996037, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10843775", "build_id": 10843775, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -x\\nset -e\\n\\nresultdir=\\\"${COPR_RESULTDIR}\\\"\\ngit clone \\\"https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git\\\" --depth 1\\ncd \\\"${COPR_PACKAGE}\\\"\\n\\n# get info from the webhook payload\\nif [[ -z \\\"$REVISION\\\" ]]; then\\n # the hook_payload file contains webhook JSON payload (copr creates it for us);\\n # it is created only if the build is triggered by Custom webhook.\\n if [[ -f \\\"$resultdir\\\"/hook_payload ]]; then\\n git clone https://github.com/praiskup/copr-ci-tooling \\\\\\n \\\"$resultdir/cct\\\" --depth 1\\n export PATH=\\\"$resultdir/cct:$PATH\\\"\\n\\n echo \\\"---\\\"\\n cat \\\"$resultdir\\\"/hook_payload\\n echo \\\"---\\\"\\n\\n # use jq to get the pr_id from the hook_payload\\n PR=$(jq -r '.pr_id // empty' \\\"$resultdir\\\"/hook_payload)\\n if [[ -z \\\"$PR\\\" ]]; then\\n BRANCH=\\\"master\\\"\\n else\\n BRANCH=\\\"pr/${PR}\\\"\\n fi\\n\\n copr-travis-checkout \\\"$resultdir\\\"/hook_payload\\n fi\\nelse\\n git checkout \\\"$REVISION\\\"\\nfi\\n\\n# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\n\\n# get the tag of this commit IF it has one\\nTAG=$(git tag --points-at HEAD | head -n1)\\nif [[ -z \\\"$TAG\\\" ]]; then\\n TAG=\\\"0.0.$PR\\\"\\nfi\\nTAG=\\\"${TAG#v}\\\" # remove v prefix from the tag\\necho \\\"TAG=$TAG\\\"\\n\\n# get the commit\\nCOMMIT=$(git rev-parse HEAD)\\necho \\\"COMMIT=$COMMIT\\\"\\n\\n# move spec file to the correct location\\ndirectories=(\\n \\\".\\\"\\n \\\"./packaging/linux/copr\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [[ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"Found spec file in ${dir}\\\"\\n rpmlint \\\"${dir}/${COPR_PACKAGE}.spec\\\"\\n\\n mv \\\"${dir}/${COPR_PACKAGE}.spec\\\" \\\"${resultdir}\\\"\\n break\\n fi\\ndone\\n\\n# fail if the spec file is not in the resultdir\\nif [[ ! -f \\\"${resultdir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"ERROR: ${COPR_PACKAGE}.spec not found\\\" >&2\\n exit 1\\nfi\\n\\n# use sed to replace these values in the spec file\\nsed -i \\\"s|%global build_version 0|%global build_version ${TAG}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global branch 0|%global branch ${BRANCH}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global commit 0|%global commit ${COMMIT}|\\\" \\\"${resultdir}\\\"/*.spec\\n\\n# create a tarball of the source code, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpdxfl01am\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--5bb8de8c-01c8-4fe0-a9c1-7c270e83da58", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10843775", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10843775, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-10 19:35:47,041][ INFO][PID:2683971] Sending fedora-messaging bus message in build.start [2026-08-10 19:35:47,510][ INFO][PID:2683971] Sending fedora-messaging bus message in chroot.start [2026-08-10 19:35:47,536][ INFO][PID:2683971] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10843775 --detached [2026-08-10 19:35:48,269][ INFO][PID:2683971] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.87.36.62' (ED25519) to the list of known hosts. [2026-08-10 19:35:48,270][ INFO][PID:2683971] Downloading the builder-live.log file, attempt 1 [2026-08-10 19:35:48,272][ INFO][PID:2683971] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.87.36.62 copr-rpmbuild-log [2026-08-10 19:35:53,279][ INFO][PID:2683971] Periodic builder liveness probe: alive [2026-08-10 19:35:53,280][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:35:58,281][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:03,282][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:08,286][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:13,287][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:18,288][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:23,290][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:28,291][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:33,293][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:38,296][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:43,297][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:48,298][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:53,300][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:36:58,301][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:03,303][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:08,305][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:13,307][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:18,310][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:23,311][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:28,313][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:33,314][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:38,316][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:43,317][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:48,319][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:53,321][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:37:58,322][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:03,323][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:08,362][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:13,364][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:18,366][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:23,367][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:28,369][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:33,370][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:38,372][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:43,373][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:48,376][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:53,378][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:38:58,380][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:03,381][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:08,382][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:13,384][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:18,386][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:23,388][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:28,389][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:33,390][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:38,392][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:43,393][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:48,395][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:53,396][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:39:58,397][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:03,399][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:08,400][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:13,401][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:18,403][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:23,404][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:28,406][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:33,407][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:38,408][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:43,410][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:48,411][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:53,413][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:40:58,414][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:03,420][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:08,422][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:13,423][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:18,424][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:23,426][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:28,428][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:33,429][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:38,438][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:43,439][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:48,443][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:53,451][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:41:58,452][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:03,459][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:08,462][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:13,464][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:18,474][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:23,477][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:28,482][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:33,483][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:38,485][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:43,487][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:48,488][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:53,490][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:42:58,492][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:03,500][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:08,501][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:13,502][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:18,504][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:23,505][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:28,506][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:33,508][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:38,510][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:43,512][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:48,514][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:53,516][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:58,519][ INFO][PID:2683971] Checking for cancel request [2026-08-10 19:43:58,521][ INFO][PID:2683971] Calling cancel callback, and waiting for thread.join() [2026-08-10 19:43:58,525][ INFO][PID:2683971] Canceling the build on the remote machine [2026-08-10 19:44:01,884][ INFO][PID:2683971] Cancel request succeeded out: success err: Warning: Permanently added '54.87.36.62' (ED25519) to the list of known hosts. [2026-08-10 19:44:01,885][ ERROR][PID:2683971] Build was canceled [2026-08-10 19:44:01,905][ INFO][PID:2683971] VM Release request [2026-08-10 19:44:01,917][WARNING][PID:2683971] Switching not-finished job state to 'failed' [2026-08-10 19:44:01,917][ INFO][PID:2683971] Worker failed build, took 494.92103838920593 [2026-08-10 19:44:01,918][ INFO][PID:2683971] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "lizardbyte", "project_name": "pulls", "project_dirname": "pulls:pr:5368", "submitter": null, "ended_on": 1786391041.9170754, "started_on": 1786390546.996037, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10843775", "build_id": 10843775, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -x\\nset -e\\n\\nresultdir=\\\"${COPR_RESULTDIR}\\\"\\ngit clone \\\"https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git\\\" --depth 1\\ncd \\\"${COPR_PACKAGE}\\\"\\n\\n# get info from the webhook payload\\nif [[ -z \\\"$REVISION\\\" ]]; then\\n # the hook_payload file contains webhook JSON payload (copr creates it for us);\\n # it is created only if the build is triggered by Custom webhook.\\n if [[ -f \\\"$resultdir\\\"/hook_payload ]]; then\\n git clone https://github.com/praiskup/copr-ci-tooling \\\\\\n \\\"$resultdir/cct\\\" --depth 1\\n export PATH=\\\"$resultdir/cct:$PATH\\\"\\n\\n echo \\\"---\\\"\\n cat \\\"$resultdir\\\"/hook_payload\\n echo \\\"---\\\"\\n\\n # use jq to get the pr_id from the hook_payload\\n PR=$(jq -r '.pr_id // empty' \\\"$resultdir\\\"/hook_payload)\\n if [[ -z \\\"$PR\\\" ]]; then\\n BRANCH=\\\"master\\\"\\n else\\n BRANCH=\\\"pr/${PR}\\\"\\n fi\\n\\n copr-travis-checkout \\\"$resultdir\\\"/hook_payload\\n fi\\nelse\\n git checkout \\\"$REVISION\\\"\\nfi\\n\\n# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\n\\n# get the tag of this commit IF it has one\\nTAG=$(git tag --points-at HEAD | head -n1)\\nif [[ -z \\\"$TAG\\\" ]]; then\\n TAG=\\\"0.0.$PR\\\"\\nfi\\nTAG=\\\"${TAG#v}\\\" # remove v prefix from the tag\\necho \\\"TAG=$TAG\\\"\\n\\n# get the commit\\nCOMMIT=$(git rev-parse HEAD)\\necho \\\"COMMIT=$COMMIT\\\"\\n\\n# move spec file to the correct location\\ndirectories=(\\n \\\".\\\"\\n \\\"./packaging/linux/copr\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [[ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"Found spec file in ${dir}\\\"\\n rpmlint \\\"${dir}/${COPR_PACKAGE}.spec\\\"\\n\\n mv \\\"${dir}/${COPR_PACKAGE}.spec\\\" \\\"${resultdir}\\\"\\n break\\n fi\\ndone\\n\\n# fail if the spec file is not in the resultdir\\nif [[ ! -f \\\"${resultdir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"ERROR: ${COPR_PACKAGE}.spec not found\\\" >&2\\n exit 1\\nfi\\n\\n# use sed to replace these values in the spec file\\nsed -i \\\"s|%global build_version 0|%global build_version ${TAG}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global branch 0|%global branch ${BRANCH}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global commit 0|%global commit ${COMMIT}|\\\" \\\"${resultdir}\\\"/*.spec\\n\\n# create a tarball of the source code, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpdxfl01am\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--5bb8de8c-01c8-4fe0-a9c1-7c270e83da58", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10843775", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10843775, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-10 19:44:02,014][ INFO][PID:2683971] Sending fedora-messaging bus message in build.end [2026-08-10 19:44:02,042][ INFO][PID:2683971] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843775/builder-live.log by gzip [2026-08-10 19:44:02,043][ INFO][PID:2683971] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843775/builder-live.log' as PID 2736594 [2026-08-10 19:44:02,094][ INFO][PID:2683971] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843775/builder-live.log) [2026-08-10 19:44:02,095][ INFO][PID:2683971] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843775/backend.log by gzip [2026-08-10 19:44:02,097][ INFO][PID:2683971] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10843775/backend.log' as PID 2736608