[2026-07-17 13:40:34,306][ INFO][PID:2944645] Marking build as starting [2026-07-17 13:40:34,373][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:40:34,379][ INFO][PID:2944645] VM allocation process starts [2026-07-17 13:40:34,401][ INFO][PID:2944645] Trying to allocate VM: ResallocHost, ticket_id=3972914, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-17 13:40:39,407][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:40:40,468][ INFO][PID:2944645] Allocated host ResallocHost, ticket_id=3972914, hostname=13.220.34.100, name=aws_x86_64_reserved_prod_13137265_20260717_133833, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-17 13:40:40,469][ INFO][PID:2944645] Allocating ssh connection to builder [2026-07-17 13:40:40,470][ INFO][PID:2944645] Checking that builder machine is OK [2026-07-17 13:40:40,804][ INFO][PID:2944645] Installed copr-rpmbuild version: 1.8 [2026-07-17 13:40:40,805][ INFO][PID:2944645] Running remote command: copr-builder-ready srpm-builds [2026-07-17 13:40:41,002][ INFO][PID:2944645] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-17 13:40:41,003][ INFO][PID:2944645] Filling build.info file with builder info [2026-07-17 13:40:41,041][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:40:41,044][ INFO][PID:2944645] 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": 1784295641.0442939, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10738022", "build_id": 10738022, "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\": \"tmp5h3kwv7o\", \"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--055ad6bc-d378-44a3-a053-8bde67864e7b", "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", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "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": "10738022", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10738022, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-17 13:40:41,097][ INFO][PID:2944645] Sending fedora-messaging bus message in build.start [2026-07-17 13:40:41,609][ INFO][PID:2944645] Sending fedora-messaging bus message in chroot.start [2026-07-17 13:40:41,643][ INFO][PID:2944645] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10738022 --detached [2026-07-17 13:40:42,145][ INFO][PID:2944645] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.220.34.100' (ED25519) to the list of known hosts. [2026-07-17 13:40:42,146][ INFO][PID:2944645] Downloading the builder-live.log file, attempt 1 [2026-07-17 13:40:42,149][ INFO][PID:2944645] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.220.34.100 copr-rpmbuild-log [2026-07-17 13:40:47,159][ INFO][PID:2944645] Periodic builder liveness probe: alive [2026-07-17 13:40:47,160][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:40:52,163][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:40:57,166][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:02,171][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:07,174][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:12,181][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:17,184][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:22,187][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:27,190][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:32,194][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:37,196][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:42,198][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:47,200][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:52,202][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:41:57,204][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:02,211][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:07,220][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:12,225][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:17,229][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:22,231][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:27,235][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:32,237][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:37,239][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:42,241][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:47,247][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:52,250][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:42:57,254][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:02,262][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:07,268][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:12,271][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:17,274][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:22,280][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:27,286][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:32,299][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:37,301][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:42,309][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:47,317][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:52,330][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:43:57,337][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:02,366][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:07,372][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:12,383][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:17,391][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:22,397][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:27,405][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:32,416][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:37,425][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:42,430][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:47,449][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:52,467][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:44:57,484][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:02,487][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:07,493][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:12,503][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:17,508][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:22,514][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:27,517][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:32,519][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:37,527][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:42,531][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:47,539][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:52,542][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:45:57,547][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:02,555][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:07,561][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:12,565][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:17,572][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:22,575][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:27,580][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:32,583][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:37,588][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:42,594][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:47,605][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:52,607][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:46:57,612][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:02,618][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:07,627][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:12,632][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:17,636][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:22,641][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:27,647][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:32,658][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:37,660][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:42,665][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:47,671][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:52,673][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:47:57,676][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:02,684][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:07,687][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:12,692][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:17,700][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:22,711][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:27,722][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:32,728][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:37,815][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:42,841][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:47,845][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:52,854][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:48:57,861][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:02,874][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:07,876][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:12,882][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:17,891][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:22,909][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:27,918][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:32,923][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:37,929][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:42,936][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:47,941][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:52,956][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:49:57,982][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:02,989][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:07,999][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:13,015][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:18,030][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:23,035][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:28,043][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:33,049][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:38,061][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:43,063][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:48,096][ INFO][PID:2944645] Periodic builder liveness probe: alive [2026-07-17 13:50:48,099][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:53,103][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:50:58,109][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:51:03,111][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:51:08,113][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:51:13,117][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:51:18,120][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:51:23,128][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:51:28,133][ INFO][PID:2944645] Checking for cancel request [2026-07-17 13:51:30,426][ INFO][PID:2944645] Downloading results from builder [2026-07-17 13:51:30,428][ INFO][PID:2944645] rsyncing of mockbuilder@13.220.34.100:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022 started [2026-07-17 13:51:30,444][ INFO][PID:2944645] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.220.34.100:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/build-10738022.rsync.log [2026-07-17 13:52:55,033][ INFO][PID:2944645] rsyncing finished. [2026-07-17 13:52:55,035][ INFO][PID:2944645] VM Release request [2026-07-17 13:52:55,045][ INFO][PID:2944645] Searching for 'success' file in resultdir [2026-07-17 13:52:55,047][ INFO][PID:2944645] Getting build details [2026-07-17 13:52:55,047][ INFO][PID:2944645] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022 [2026-07-17 13:52:55,048][ INFO][PID:2944645] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/Sunshine-0.0.5368-1.src.rpm [2026-07-17 13:52:55,049][ INFO][PID:2944645] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-17 13:52:55,050][ INFO][PID:2944645] Finished build: id=10738022 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-17 13:52:55,052][ INFO][PID:2944645] Worker succeeded build, took 734.0083713531494 [2026-07-17 13:52:55,053][ INFO][PID:2944645] 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": 1784296375.0526652, "started_on": 1784295641.0442939, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10738022", "build_id": 10738022, "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\": \"tmp5h3kwv7o\", \"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:5368/srpm-builds/10738022/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--055ad6bc-d378-44a3-a053-8bde67864e7b", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "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": "10738022", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10738022, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-17 13:52:55,117][ INFO][PID:2944645] Sending fedora-messaging bus message in build.end [2026-07-17 13:52:55,146][ INFO][PID:2944645] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/builder-live.log by gzip [2026-07-17 13:52:55,147][ INFO][PID:2944645] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/builder-live.log' as PID 3085379 [2026-07-17 13:52:55,159][ INFO][PID:2944645] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/builder-live.log) [2026-07-17 13:52:55,160][ INFO][PID:2944645] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/backend.log by gzip [2026-07-17 13:52:55,161][ INFO][PID:2944645] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10738022/backend.log' as PID 3085380