[2026-09-09 04:01:28,748][ INFO][PID:26208] Marking build as starting [2026-09-09 04:01:28,777][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:01:28,778][ INFO][PID:26208] VM allocation process starts [2026-09-09 04:01:28,785][ INFO][PID:26208] Trying to allocate VM: ResallocHost, ticket_id=4915803, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-09 04:01:31,795][ INFO][PID:26208] Allocated host ResallocHost, ticket_id=4915803, hostname=2620:52:6:1161:dead:beef:cafe:c13f, name=vmhost_x86_04_prod_32395197_20260909_021014, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-09 04:01:31,795][ INFO][PID:26208] Allocating ssh connection to builder [2026-09-09 04:01:31,796][ INFO][PID:26208] Checking that builder machine is OK [2026-09-09 04:01:32,338][ INFO][PID:26208] Installed copr-rpmbuild version: 1.9 [2026-09-09 04:01:32,339][ INFO][PID:26208] Running remote command: copr-builder-ready srpm-builds [2026-09-09 04:01:32,631][ INFO][PID:26208] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-09 04:01:32,632][ INFO][PID:26208] Filling build.info file with builder info [2026-09-09 04:01:32,632][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:01:32,633][ INFO][PID:26208] 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:4987", "submitter": null, "ended_on": null, "started_on": 1788926492.6338434, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10963314", "build_id": 10963314, "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\": \"tmpmctwxmzi\", \"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--500acb72-1a28-49ee-9ca8-1a81a34dbcd2", "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:4987", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4987", "result_dir": "10963314", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10963314, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-09 04:01:32,674][ INFO][PID:26208] Sending fedora-messaging bus message in build.start [2026-09-09 04:01:33,050][ INFO][PID:26208] Sending fedora-messaging bus message in chroot.start [2026-09-09 04:01:33,070][ INFO][PID:26208] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10963314 --detached [2026-09-09 04:01:33,646][ INFO][PID:26208] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c13f' (ED25519) to the list of known hosts. [2026-09-09 04:01:33,646][ INFO][PID:26208] Downloading the builder-live.log file, attempt 1 [2026-09-09 04:01:33,647][ INFO][PID:26208] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c13f copr-rpmbuild-log [2026-09-09 04:01:38,651][ INFO][PID:26208] Periodic builder liveness probe: alive [2026-09-09 04:01:38,651][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:01:43,652][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:01:48,653][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:01:53,657][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:01:58,658][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:03,659][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:08,662][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:13,665][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:18,666][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:23,667][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:28,668][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:33,671][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:38,672][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:43,676][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:48,677][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:53,678][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:02:58,681][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:03,687][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:08,690][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:13,691][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:18,693][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:23,695][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:28,696][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:33,697][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:38,698][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:43,699][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:48,704][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:53,707][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:03:58,709][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:03,710][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:08,711][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:13,712][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:18,713][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:23,715][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:28,716][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:33,716][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:38,717][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:43,718][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:48,719][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:53,757][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:04:58,795][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:03,800][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:08,802][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:13,804][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:18,805][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:23,807][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:28,808][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:33,810][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:38,811][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:43,813][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:48,814][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:53,816][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:05:58,818][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:03,820][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:08,821][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:13,822][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:18,823][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:23,865][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:28,868][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:33,871][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:38,874][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:43,876][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:48,878][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:53,880][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:06:58,881][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:03,884][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:08,885][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:13,886][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:18,886][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:23,887][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:28,888][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:33,889][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:38,890][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:43,890][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:48,892][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:53,893][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:07:58,896][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:03,896][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:08,897][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:13,898][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:18,899][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:23,900][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:28,901][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:33,902][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:38,903][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:43,903][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:48,905][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:53,906][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:08:58,907][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:03,908][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:08,913][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:13,914][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:18,915][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:23,916][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:28,917][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:33,917][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:38,918][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:43,919][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:48,920][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:53,921][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:09:58,923][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:03,924][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:08,925][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:13,926][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:18,927][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:23,928][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:28,929][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:33,930][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:38,931][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:43,932][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:48,935][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:53,935][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:10:58,937][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:03,938][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:08,939][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:13,940][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:18,942][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:23,944][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:28,945][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:33,946][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:38,952][ INFO][PID:26208] Periodic builder liveness probe: alive [2026-09-09 04:11:38,954][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:43,955][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:48,956][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:53,959][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:11:58,960][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:12:03,963][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:12:08,964][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:12:13,966][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:12:18,971][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:12:23,972][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:12:29,003][ INFO][PID:26208] Checking for cancel request [2026-09-09 04:12:29,832][ INFO][PID:26208] Downloading results from builder [2026-09-09 04:12:29,832][ INFO][PID:26208] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c13f]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314 started [2026-09-09 04:12:29,833][ INFO][PID:26208] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:6:1161:dead:beef:cafe:c13f]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/build-10963314.rsync.log [2026-09-09 04:12:40,936][ INFO][PID:26208] rsyncing finished. [2026-09-09 04:12:40,937][ INFO][PID:26208] VM Release request [2026-09-09 04:12:40,943][ INFO][PID:26208] Searching for 'success' file in resultdir [2026-09-09 04:12:40,943][ INFO][PID:26208] Getting build details [2026-09-09 04:12:40,944][ INFO][PID:26208] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314 [2026-09-09 04:12:40,944][ INFO][PID:26208] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/Sunshine-0.0.4987-1.src.rpm [2026-09-09 04:12:40,944][ INFO][PID:26208] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/Sunshine-0.0.4987-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.4987-1'} [2026-09-09 04:12:40,945][ INFO][PID:26208] Finished build: id=10963314 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987 chroot=srpm-builds [2026-09-09 04:12:40,945][ INFO][PID:26208] Worker succeeded build, took 668.3116226196289 [2026-09-09 04:12:40,945][ INFO][PID:26208] 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:4987", "submitter": null, "ended_on": 1788927160.945466, "started_on": 1788926492.6338434, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10963314", "build_id": 10963314, "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\": \"tmpmctwxmzi\", \"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:4987/srpm-builds/10963314/Sunshine-0.0.4987-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--500acb72-1a28-49ee-9ca8-1a81a34dbcd2", "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.4987", "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:4987", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:4987", "result_dir": "10963314", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.4987-1", "id": 10963314, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-09 04:12:40,998][ INFO][PID:26208] Sending fedora-messaging bus message in build.end [2026-09-09 04:12:41,020][ INFO][PID:26208] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/builder-live.log by gzip [2026-09-09 04:12:41,020][ INFO][PID:26208] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/builder-live.log' as PID 385250 [2026-09-09 04:12:41,025][ INFO][PID:26208] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/builder-live.log) [2026-09-09 04:12:41,025][ INFO][PID:26208] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/backend.log by gzip [2026-09-09 04:12:41,025][ INFO][PID:26208] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:4987/srpm-builds/10963314/backend.log' as PID 385253