[2026-03-09 01:03:37,994][ INFO][PID:3013759] Marking build as starting [2026-03-09 01:03:38,032][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:03:38,033][ INFO][PID:3013759] VM allocation process starts [2026-03-09 01:03:38,045][ INFO][PID:3013759] Trying to allocate VM: ResallocHost, ticket_id=1768051, requested_tags=['copr_builder', 'arch_x86_64'] [2026-03-09 01:03:43,046][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:03:44,063][ INFO][PID:3013759] Allocated host ResallocHost, ticket_id=1768051, hostname=54.80.179.184, name=aws_x86_64_normalreserved_prod_02921973_20260309_005227, requested_tags=['copr_builder', 'arch_x86_64'] [2026-03-09 01:03:44,064][ INFO][PID:3013759] Allocating ssh connection to builder [2026-03-09 01:03:44,064][ INFO][PID:3013759] Checking that builder machine is OK [2026-03-09 01:03:44,406][ INFO][PID:3013759] Running remote command: copr-builder-ready srpm-builds [2026-03-09 01:03:44,628][ INFO][PID:3013759] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-03-09 01:03:44,629][ INFO][PID:3013759] Filling build.info file with builder info [2026-03-09 01:03:44,630][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:03:44,631][ INFO][PID:3013759] 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:3725", "submitter": null, "ended_on": null, "started_on": 1773018224.6308506, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10202235", "build_id": 10202235, "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\": \"tmpp6f0c_55\", \"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--8a75965c-29f0-49dd-aeaf-e2b3be839d6d", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:3725", "result_dir": "10202235", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10202235, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-03-09 01:03:44,670][ INFO][PID:3013759] Sending fedora-messaging bus message in build.start [2026-03-09 01:03:45,214][ INFO][PID:3013759] Sending fedora-messaging bus message in chroot.start [2026-03-09 01:03:45,243][ INFO][PID:3013759] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10202235 --detached [2026-03-09 01:03:45,607][ INFO][PID:3013759] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.80.179.184' (ED25519) to the list of known hosts. [2026-03-09 01:03:45,608][ INFO][PID:3013759] Downloading the builder-live.log file, attempt 1 [2026-03-09 01:03:45,609][ INFO][PID:3013759] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.80.179.184 copr-rpmbuild-log [2026-03-09 01:03:50,614][ INFO][PID:3013759] Periodic builder liveness probe: alive [2026-03-09 01:03:50,615][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:03:55,615][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:00,616][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:05,617][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:10,618][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:15,619][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:20,620][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:25,621][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:30,622][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:35,623][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:40,627][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:45,628][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:50,629][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:04:55,630][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:00,631][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:05,631][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:10,632][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:15,633][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:20,634][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:25,635][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:30,636][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:35,637][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:40,638][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:45,640][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:50,642][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:05:55,643][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:00,644][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:05,646][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:10,647][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:15,648][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:20,649][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:25,650][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:30,651][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:35,651][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:40,652][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:45,653][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:50,654][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:06:55,655][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:00,656][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:05,657][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:10,658][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:15,659][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:20,661][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:25,662][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:30,663][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:35,663][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:40,664][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:45,666][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:50,667][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:07:55,668][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:00,669][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:05,670][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:10,671][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:15,672][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:20,673][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:25,674][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:30,675][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:35,676][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:40,677][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:45,678][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:50,679][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:08:55,680][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:00,681][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:05,682][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:10,683][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:15,684][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:20,685][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:25,686][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:30,688][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:35,689][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:40,690][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:45,691][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:50,692][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:09:55,693][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:00,693][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:05,694][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:10,695][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:15,696][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:20,697][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:25,698][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:30,699][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:35,700][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:40,701][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:45,702][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:50,703][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:55,704][ INFO][PID:3013759] Checking for cancel request [2026-03-09 01:10:59,086][ INFO][PID:3013759] Downloading results from builder [2026-03-09 01:10:59,086][ INFO][PID:3013759] rsyncing of mockbuilder@54.80.179.184:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235 started [2026-03-09 01:10:59,087][ INFO][PID:3013759] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.80.179.184:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/build-10202235.rsync.log [2026-03-09 01:11:01,564][ INFO][PID:3013759] rsyncing finished. [2026-03-09 01:11:01,565][ INFO][PID:3013759] Releasing VM back to pool [2026-03-09 01:11:01,574][ INFO][PID:3013759] Searching for 'success' file in resultdir [2026-03-09 01:11:01,575][ INFO][PID:3013759] Getting build details [2026-03-09 01:11:01,575][ INFO][PID:3013759] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235 [2026-03-09 01:11:01,576][ INFO][PID:3013759] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/Sunshine-0.0.3725-1.src.rpm [2026-03-09 01:11:01,576][ INFO][PID:3013759] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/Sunshine-0.0.3725-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.3725-1'} [2026-03-09 01:11:01,577][ INFO][PID:3013759] Finished build: id=10202235 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725 chroot=srpm-builds [2026-03-09 01:11:01,578][ INFO][PID:3013759] Worker succeeded build, took 436.9477906227112 [2026-03-09 01:11:01,579][ INFO][PID:3013759] 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:3725", "submitter": null, "ended_on": 1773018661.5786412, "started_on": 1773018224.6308506, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10202235", "build_id": 10202235, "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\": \"tmpp6f0c_55\", \"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:3725/srpm-builds/10202235/Sunshine-0.0.3725-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--8a75965c-29f0-49dd-aeaf-e2b3be839d6d", "results": { "name": "Sunshine", "epoch": null, "version": "0.0.3725", "release": "1", "exclusivearch": [], "excludearch": [] }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:3725", "result_dir": "10202235", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.3725-1", "id": 10202235, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-03-09 01:11:01,635][ INFO][PID:3013759] Sending fedora-messaging bus message in build.end [2026-03-09 01:11:01,665][ INFO][PID:3013759] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/builder-live.log by gzip [2026-03-09 01:11:01,666][ INFO][PID:3013759] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/builder-live.log' as PID 3046740 [2026-03-09 01:11:01,752][ INFO][PID:3013759] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/builder-live.log) [2026-03-09 01:11:01,752][ INFO][PID:3013759] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/backend.log by gzip [2026-03-09 01:11:01,753][ INFO][PID:3013759] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:3725/srpm-builds/10202235/backend.log' as PID 3046743