[2026-09-16 02:26:58,176][ INFO][PID:1640656] Marking build as starting [2026-09-16 02:26:58,203][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:26:58,203][ INFO][PID:1640656] VM allocation process starts [2026-09-16 02:26:58,208][ INFO][PID:1640656] Trying to allocate VM: ResallocHost, ticket_id=5051598, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 02:27:01,217][ INFO][PID:1640656] Allocated host ResallocHost, ticket_id=5051598, hostname=44.200.122.88, name=aws_x86_64_reserved_prod_38214170_20260916_022039, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-16 02:27:01,218][ INFO][PID:1640656] Allocating ssh connection to builder [2026-09-16 02:27:01,218][ INFO][PID:1640656] Checking that builder machine is OK [2026-09-16 02:27:01,517][ INFO][PID:1640656] Installed copr-rpmbuild version: 1.9 [2026-09-16 02:27:01,517][ INFO][PID:1640656] Running remote command: copr-builder-ready srpm-builds [2026-09-16 02:27:01,676][ INFO][PID:1640656] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-16 02:27:01,677][ INFO][PID:1640656] Filling build.info file with builder info [2026-09-16 02:27:01,677][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:01,677][ INFO][PID:1640656] 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:5731", "submitter": null, "ended_on": null, "started_on": 1789525621.6778758, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10990345", "build_id": 10990345, "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\": \"tmpusdamm7y\", \"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--1ff6188d-73b5-4f91-a9a3-ba5f1ddcdb34", "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:5731", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5731", "result_dir": "10990345", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10990345, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 02:27:01,703][ INFO][PID:1640656] Sending fedora-messaging bus message in build.start [2026-09-16 02:27:02,190][ INFO][PID:1640656] Sending fedora-messaging bus message in chroot.start [2026-09-16 02:27:02,226][ INFO][PID:1640656] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10990345 --detached [2026-09-16 02:27:02,656][ INFO][PID:1640656] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.200.122.88' (ED25519) to the list of known hosts. [2026-09-16 02:27:02,657][ INFO][PID:1640656] Downloading the builder-live.log file, attempt 1 [2026-09-16 02:27:02,658][ INFO][PID:1640656] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.200.122.88 copr-rpmbuild-log [2026-09-16 02:27:07,661][ INFO][PID:1640656] Periodic builder liveness probe: alive [2026-09-16 02:27:08,018][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:13,019][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:18,020][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:23,021][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:28,021][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:33,022][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:38,023][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:43,024][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:48,025][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:53,026][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:27:58,026][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:03,027][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:08,028][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:13,029][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:18,029][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:23,030][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:28,031][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:33,032][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:38,033][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:43,034][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:48,222][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:53,223][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:28:58,224][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:03,226][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:08,228][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:13,229][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:18,230][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:23,231][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:28,364][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:33,365][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:38,366][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:43,367][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:48,367][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:53,368][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:29:58,406][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:03,527][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:08,639][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:13,640][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:18,641][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:23,642][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:28,643][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:33,643][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:38,644][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:44,315][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:49,316][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:54,318][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:30:59,319][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:04,321][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:09,322][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:14,323][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:19,324][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:24,326][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:29,327][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:34,328][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:39,329][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:44,329][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:49,330][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:54,332][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:31:59,333][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:04,334][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:09,335][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:14,500][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:19,501][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:24,502][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:29,503][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:34,532][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:39,535][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:44,537][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:49,611][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:54,612][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:32:59,613][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:04,613][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:09,614][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:14,635][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:19,635][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:24,739][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:29,740][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:34,740][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:39,976][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:44,978][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:50,515][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:33:55,516][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:00,517][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:05,792][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:10,793][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:15,794][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:20,795][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:25,795][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:30,796][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:35,870][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:40,872][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:46,068][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:51,069][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:34:56,072][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:01,073][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:06,074][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:11,075][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:16,076][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:21,077][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:26,239][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:31,241][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:36,243][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:41,244][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:46,245][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:51,247][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:35:56,248][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:01,249][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:06,251][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:11,252][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:16,254][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:21,255][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:26,256][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:31,258][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:36,259][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:41,261][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:46,262][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:51,263][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:36:56,264][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:01,265][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:06,266][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:11,271][ INFO][PID:1640656] Periodic builder liveness probe: alive [2026-09-16 02:37:11,337][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:16,337][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:21,590][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:26,591][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:31,592][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:36,593][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:41,594][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:46,595][ INFO][PID:1640656] Checking for cancel request [2026-09-16 02:37:49,838][ INFO][PID:1640656] Downloading results from builder [2026-09-16 02:37:49,839][ INFO][PID:1640656] rsyncing of mockbuilder@44.200.122.88:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345 started [2026-09-16 02:37:49,839][ INFO][PID:1640656] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.200.122.88:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/build-10990345.rsync.log [2026-09-16 02:37:51,813][ INFO][PID:1640656] rsyncing finished. [2026-09-16 02:37:51,813][ INFO][PID:1640656] VM Release request [2026-09-16 02:37:51,818][ INFO][PID:1640656] Searching for 'success' file in resultdir [2026-09-16 02:37:51,819][ INFO][PID:1640656] Getting build details [2026-09-16 02:37:51,819][ INFO][PID:1640656] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345 [2026-09-16 02:37:51,820][ INFO][PID:1640656] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/Sunshine-0.0.5731-1.src.rpm [2026-09-16 02:37:51,820][ INFO][PID:1640656] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/Sunshine-0.0.5731-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5731-1'} [2026-09-16 02:37:51,820][ INFO][PID:1640656] Finished build: id=10990345 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731 chroot=srpm-builds [2026-09-16 02:37:51,820][ INFO][PID:1640656] Worker succeeded build, took 650.1430568695068 [2026-09-16 02:37:51,821][ INFO][PID:1640656] 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:5731", "submitter": null, "ended_on": 1789526271.8209326, "started_on": 1789525621.6778758, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10990345", "build_id": 10990345, "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\": \"tmpusdamm7y\", \"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:5731/srpm-builds/10990345/Sunshine-0.0.5731-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--1ff6188d-73b5-4f91-a9a3-ba5f1ddcdb34", "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.5731", "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:5731", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5731", "result_dir": "10990345", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5731-1", "id": 10990345, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-16 02:37:51,866][ INFO][PID:1640656] Sending fedora-messaging bus message in build.end [2026-09-16 02:37:51,898][ INFO][PID:1640656] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/builder-live.log by gzip [2026-09-16 02:37:51,899][ INFO][PID:1640656] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/builder-live.log' as PID 1754353 [2026-09-16 02:37:51,918][ INFO][PID:1640656] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/builder-live.log) [2026-09-16 02:37:51,918][ INFO][PID:1640656] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/backend.log by gzip [2026-09-16 02:37:51,919][ INFO][PID:1640656] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5731/srpm-builds/10990345/backend.log' as PID 1754368