[2026-09-15 20:07:05,936][ INFO][PID:1685580] Marking build as starting [2026-09-15 20:07:05,974][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:05,975][ INFO][PID:1685580] VM allocation process starts [2026-09-15 20:07:05,984][ INFO][PID:1685580] Trying to allocate VM: ResallocHost, ticket_id=5046723, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-15 20:07:08,993][ INFO][PID:1685580] Allocated host ResallocHost, ticket_id=5046723, hostname=98.82.180.131, name=aws_x86_64_reserved_prod_38029597_20260915_200549, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-15 20:07:08,993][ INFO][PID:1685580] Allocating ssh connection to builder [2026-09-15 20:07:08,994][ INFO][PID:1685580] Checking that builder machine is OK [2026-09-15 20:07:09,275][ INFO][PID:1685580] Installed copr-rpmbuild version: 1.9 [2026-09-15 20:07:09,276][ INFO][PID:1685580] Running remote command: copr-builder-ready srpm-builds [2026-09-15 20:07:09,426][ INFO][PID:1685580] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-15 20:07:09,426][ INFO][PID:1685580] Filling build.info file with builder info [2026-09-15 20:07:09,427][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:09,427][ INFO][PID:1685580] 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:5730", "submitter": null, "ended_on": null, "started_on": 1789502829.427478, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10989303", "build_id": 10989303, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpax_8iqtm\", \"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--d998bae9-208c-477f-b994-5d56c34ada78", "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-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5730", "result_dir": "10989303", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10989303, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-15 20:07:09,454][ INFO][PID:1685580] Sending fedora-messaging bus message in build.start [2026-09-15 20:07:09,825][ INFO][PID:1685580] Sending fedora-messaging bus message in chroot.start [2026-09-15 20:07:17,953][ INFO][PID:1685580] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10989303 --detached [2026-09-15 20:07:18,414][ INFO][PID:1685580] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.82.180.131' (ED25519) to the list of known hosts. [2026-09-15 20:07:18,415][ INFO][PID:1685580] Downloading the builder-live.log file, attempt 1 [2026-09-15 20:07:18,417][ INFO][PID:1685580] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.82.180.131 copr-rpmbuild-log [2026-09-15 20:07:23,419][ INFO][PID:1685580] Periodic builder liveness probe: alive [2026-09-15 20:07:23,420][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:28,420][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:33,421][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:38,422][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:43,423][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:48,424][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:53,425][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:07:58,426][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:03,427][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:08,428][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:13,429][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:18,430][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:23,894][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:28,895][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:33,896][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:38,896][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:43,897][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:48,900][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:53,901][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:08:59,527][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:04,528][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:09,605][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:14,606][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:19,635][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:24,699][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:29,744][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:34,915][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:40,277][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:45,303][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:50,553][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:09:56,741][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:03,047][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:08,061][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:13,542][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:19,044][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:24,243][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:29,281][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:34,355][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:39,547][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:45,142][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:50,144][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:10:55,509][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:00,510][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:05,762][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:11,359][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:17,074][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:22,901][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:27,949][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:33,151][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:38,278][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:43,795][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:48,796][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:53,796][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:11:58,798][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:03,799][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:08,800][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:13,801][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:18,801][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:23,802][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:28,803][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:33,804][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:38,805][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:43,806][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:48,807][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:53,808][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:12:58,809][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:03,810][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:08,811][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:13,812][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:18,813][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:23,813][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:28,814][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:33,815][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:38,816][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:43,817][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:48,817][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:53,818][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:13:58,819][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:03,820][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:08,821][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:13,822][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:18,823][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:23,824][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:28,824][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:33,825][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:38,826][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:43,827][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:48,828][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:53,829][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:14:58,830][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:03,832][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:08,833][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:13,834][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:18,834][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:23,835][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:28,836][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:33,837][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:38,838][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:44,635][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:49,636][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:54,637][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:15:59,638][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:04,639][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:09,639][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:14,640][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:19,641][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:24,642][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:30,447][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:36,493][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:42,468][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:48,437][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:16:54,862][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:00,300][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:05,444][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:10,693][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:16,113][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:21,669][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:27,132][ INFO][PID:1685580] Periodic builder liveness probe: alive [2026-09-15 20:17:28,038][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:33,053][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:38,806][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:43,873][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:49,486][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:54,550][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:17:59,551][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:18:04,553][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:18:09,607][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:18:14,963][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:18:20,198][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:18:25,384][ INFO][PID:1685580] Checking for cancel request [2026-09-15 20:18:30,175][ INFO][PID:1685580] Downloading results from builder [2026-09-15 20:18:30,176][ INFO][PID:1685580] rsyncing of mockbuilder@98.82.180.131:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303 started [2026-09-15 20:18:30,176][ INFO][PID:1685580] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.82.180.131:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/build-10989303.rsync.log [2026-09-15 20:25:36,059][ INFO][PID:1685580] rsyncing finished. [2026-09-15 20:25:36,060][ INFO][PID:1685580] VM Release request [2026-09-15 20:25:36,065][ INFO][PID:1685580] Searching for 'success' file in resultdir [2026-09-15 20:25:36,065][ INFO][PID:1685580] Getting build details [2026-09-15 20:25:36,065][ INFO][PID:1685580] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303 [2026-09-15 20:25:36,066][ INFO][PID:1685580] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/Sunshine-0.0.5730-1.src.rpm [2026-09-15 20:25:36,066][ INFO][PID:1685580] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/Sunshine-0.0.5730-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5730-1'} [2026-09-15 20:25:36,066][ INFO][PID:1685580] Finished build: id=10989303 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730 chroot=srpm-builds [2026-09-15 20:25:36,067][ INFO][PID:1685580] Worker succeeded build, took 1106.6396284103394 [2026-09-15 20:25:36,067][ INFO][PID:1685580] 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:5730", "submitter": null, "ended_on": 1789503936.0671065, "started_on": 1789502829.427478, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10989303", "build_id": 10989303, "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-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmpax_8iqtm\", \"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:5730/srpm-builds/10989303/Sunshine-0.0.5730-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--d998bae9-208c-477f-b994-5d56c34ada78", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {}, "opensuse-leap-16.0": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5730", "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-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5730", "result_dir": "10989303", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5730-1", "id": 10989303, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-15 20:25:36,113][ INFO][PID:1685580] Sending fedora-messaging bus message in build.end [2026-09-15 20:25:36,134][ INFO][PID:1685580] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/builder-live.log by gzip [2026-09-15 20:25:36,135][ INFO][PID:1685580] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/builder-live.log' as PID 1877652 [2026-09-15 20:25:36,302][ INFO][PID:1685580] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/builder-live.log) [2026-09-15 20:25:36,303][ INFO][PID:1685580] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/backend.log by gzip [2026-09-15 20:25:36,304][ INFO][PID:1685580] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5730/srpm-builds/10989303/backend.log' as PID 1877671