[2026-05-17 17:16:16,427][ INFO][PID:726077] Marking build as starting [2026-05-17 17:16:16,464][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:16:16,466][ INFO][PID:726077] VM allocation process starts [2026-05-17 17:16:16,475][ INFO][PID:726077] Trying to allocate VM: ResallocHost, ticket_id=2937844, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-17 17:16:19,526][ INFO][PID:726077] Allocated host ResallocHost, ticket_id=2937844, hostname=44.210.138.241, name=aws_x86_64_reserved_prod_08887870_20260517_170740, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-17 17:16:19,527][ INFO][PID:726077] Allocating ssh connection to builder [2026-05-17 17:16:19,527][ INFO][PID:726077] Checking that builder machine is OK [2026-05-17 17:16:19,877][ INFO][PID:726077] Installed copr-rpmbuild version: 1.8 [2026-05-17 17:16:19,877][ INFO][PID:726077] Running remote command: copr-builder-ready srpm-builds [2026-05-17 17:16:20,092][ INFO][PID:726077] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-17 17:16:20,093][ INFO][PID:726077] Filling build.info file with builder info [2026-05-17 17:16:20,094][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:16:20,094][ INFO][PID:726077] 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:5139", "submitter": null, "ended_on": null, "started_on": 1779038180.09481, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10473178", "build_id": 10473178, "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\": \"tmpyb12cqnq\", \"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--909a91b0-c8cf-4447-83bf-bedc806373ae", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5139", "result_dir": "10473178", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10473178, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-17 17:16:20,128][ INFO][PID:726077] Sending fedora-messaging bus message in build.start [2026-05-17 17:16:20,574][ INFO][PID:726077] Sending fedora-messaging bus message in chroot.start [2026-05-17 17:16:20,599][ INFO][PID:726077] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10473178 --detached [2026-05-17 17:16:21,033][ INFO][PID:726077] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.210.138.241' (ED25519) to the list of known hosts. [2026-05-17 17:16:21,034][ INFO][PID:726077] Downloading the builder-live.log file, attempt 1 [2026-05-17 17:16:21,045][ INFO][PID:726077] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.210.138.241 copr-rpmbuild-log [2026-05-17 17:16:26,039][ INFO][PID:726077] Periodic builder liveness probe: alive [2026-05-17 17:16:26,040][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:16:31,041][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:16:36,042][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:16:41,044][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:16:46,045][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:16:51,046][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:16:56,048][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:01,049][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:06,050][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:11,606][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:16,607][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:21,608][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:26,609][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:31,611][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:36,612][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:41,613][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:46,827][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:51,829][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:17:56,830][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:01,831][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:06,832][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:11,834][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:16,835][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:21,837][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:26,838][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:31,840][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:36,841][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:41,843][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:46,845][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:51,846][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:18:56,848][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:01,849][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:06,850][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:11,852][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:16,853][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:21,855][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:26,857][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:31,858][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:36,860][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:41,861][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:46,862][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:51,865][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:19:56,866][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:01,867][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:06,868][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:11,870][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:16,871][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:21,872][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:26,874][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:31,875][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:36,876][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:41,877][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:46,878][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:51,880][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:20:56,881][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:01,882][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:06,884][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:11,885][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:16,886][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:21,908][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:26,910][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:31,911][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:36,912][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:41,913][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:46,915][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:51,916][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:21:56,917][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:01,918][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:06,920][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:11,921][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:16,922][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:21,923][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:26,925][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:31,926][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:36,927][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:41,928][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:46,929][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:51,931][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:22:56,950][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:01,951][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:06,952][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:11,953][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:17,023][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:22,153][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:27,156][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:33,023][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:38,024][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:43,026][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:48,029][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:53,031][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:23:58,033][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:24:03,034][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:24:08,035][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:24:13,037][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:24:18,038][ INFO][PID:726077] Checking for cancel request [2026-05-17 17:24:20,677][ INFO][PID:726077] Downloading results from builder [2026-05-17 17:24:20,678][ INFO][PID:726077] rsyncing of mockbuilder@44.210.138.241:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178 started [2026-05-17 17:24:20,679][ INFO][PID:726077] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.210.138.241:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/build-10473178.rsync.log [2026-05-17 17:24:25,626][ INFO][PID:726077] rsyncing finished. [2026-05-17 17:24:25,627][ INFO][PID:726077] VM Release request [2026-05-17 17:24:25,636][ INFO][PID:726077] Searching for 'success' file in resultdir [2026-05-17 17:24:25,637][ INFO][PID:726077] Getting build details [2026-05-17 17:24:25,638][ INFO][PID:726077] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178 [2026-05-17 17:24:25,639][ INFO][PID:726077] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/Sunshine-0.0.5139-1.src.rpm [2026-05-17 17:24:25,639][ INFO][PID:726077] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/Sunshine-0.0.5139-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5139-1'} [2026-05-17 17:24:25,640][ INFO][PID:726077] Finished build: id=10473178 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139 chroot=srpm-builds [2026-05-17 17:24:25,641][ INFO][PID:726077] Worker succeeded build, took 485.54686403274536 [2026-05-17 17:24:25,642][ INFO][PID:726077] 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:5139", "submitter": null, "ended_on": 1779038665.641674, "started_on": 1779038180.09481, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10473178", "build_id": 10473178, "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\": \"tmpyb12cqnq\", \"hook_data\": true}", "pkg_name": "Sunshine", "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/Sunshine-0.0.5139-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--909a91b0-c8cf-4447-83bf-bedc806373ae", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5139", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5139", "result_dir": "10473178", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5139-1", "id": 10473178, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-17 17:24:25,692][ INFO][PID:726077] Sending fedora-messaging bus message in build.end [2026-05-17 17:24:25,718][ INFO][PID:726077] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/builder-live.log by gzip [2026-05-17 17:24:25,719][ INFO][PID:726077] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/builder-live.log' as PID 746583 [2026-05-17 17:24:25,744][ INFO][PID:726077] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/builder-live.log) [2026-05-17 17:24:25,744][ INFO][PID:726077] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/backend.log by gzip [2026-05-17 17:24:25,746][ INFO][PID:726077] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5139/srpm-builds/10473178/backend.log' as PID 746585