[2026-08-07 13:04:02,204][ INFO][PID:3803456] Marking build as starting [2026-08-07 13:04:02,244][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:02,246][ INFO][PID:3803456] VM allocation process starts [2026-08-07 13:04:02,256][ INFO][PID:3803456] Trying to allocate VM: ResallocHost, ticket_id=4345515, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-07 13:04:05,272][ INFO][PID:3803456] Allocated host ResallocHost, ticket_id=4345515, hostname=54.162.85.13, name=aws_x86_64_reserved_prod_16944937_20260807_125619, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-07 13:04:05,273][ INFO][PID:3803456] Allocating ssh connection to builder [2026-08-07 13:04:05,273][ INFO][PID:3803456] Checking that builder machine is OK [2026-08-07 13:04:05,581][ INFO][PID:3803456] Installed copr-rpmbuild version: 1.8 [2026-08-07 13:04:05,582][ INFO][PID:3803456] Running remote command: copr-builder-ready srpm-builds [2026-08-07 13:04:05,767][ INFO][PID:3803456] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-07 13:04:05,768][ INFO][PID:3803456] Filling build.info file with builder info [2026-08-07 13:04:05,769][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:05,770][ INFO][PID:3803456] 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:5466", "submitter": null, "ended_on": null, "started_on": 1786107845.7705638, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10835750", "build_id": 10835750, "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\": \"tmpjkpt3s17\", \"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--c8876240-3a4e-4f54-8d3f-1ab9dd28bac8", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5466", "result_dir": "10835750", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10835750, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-07 13:04:05,813][ INFO][PID:3803456] Sending fedora-messaging bus message in build.start [2026-08-07 13:04:06,276][ INFO][PID:3803456] Sending fedora-messaging bus message in chroot.start [2026-08-07 13:04:06,304][ INFO][PID:3803456] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10835750 --detached [2026-08-07 13:04:06,772][ INFO][PID:3803456] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.162.85.13' (ED25519) to the list of known hosts. [2026-08-07 13:04:06,773][ INFO][PID:3803456] Downloading the builder-live.log file, attempt 1 [2026-08-07 13:04:06,775][ INFO][PID:3803456] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.162.85.13 copr-rpmbuild-log [2026-08-07 13:04:11,786][ INFO][PID:3803456] Periodic builder liveness probe: alive [2026-08-07 13:04:11,788][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:16,790][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:21,792][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:26,793][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:31,795][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:36,796][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:41,798][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:46,799][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:51,801][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:04:56,802][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:01,804][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:06,805][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:11,807][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:16,809][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:21,810][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:26,812][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:31,813][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:36,815][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:41,816][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:46,817][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:51,819][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:05:56,820][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:01,821][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:06,824][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:11,827][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:16,829][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:21,830][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:26,832][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:31,833][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:36,835][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:41,836][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:46,838][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:51,839][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:06:56,841][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:01,842][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:06,845][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:11,847][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:16,848][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:21,849][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:26,851][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:31,854][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:36,856][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:41,857][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:46,859][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:51,860][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:07:56,862][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:01,863][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:06,865][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:11,870][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:16,872][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:21,873][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:26,877][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:31,879][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:36,885][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:41,889][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:46,891][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:51,894][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:08:56,897][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:01,901][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:06,903][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:11,904][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:16,908][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:21,910][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:26,913][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:31,914][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:36,916][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:41,918][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:46,920][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:51,921][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:09:56,925][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:01,930][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:06,932][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:11,936][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:16,940][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:21,948][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:26,950][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:31,957][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:36,960][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:41,969][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:46,974][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:51,979][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:10:56,989][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:01,995][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:06,999][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:12,004][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:17,009][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:22,011][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:27,014][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:32,018][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:37,022][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:42,027][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:47,029][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:52,034][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:11:57,040][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:02,045][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:07,053][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:12,061][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:17,063][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:22,066][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:27,070][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:32,073][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:37,079][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:42,085][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:47,088][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:52,110][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:12:57,130][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:02,139][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:07,152][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:12,156][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:17,166][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:22,176][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:27,179][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:32,190][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:37,201][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:42,213][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:47,220][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:52,228][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:13:57,246][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:14:02,253][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:14:07,257][ INFO][PID:3803456] Checking for cancel request [2026-08-07 13:14:10,693][ INFO][PID:3803456] Downloading results from builder [2026-08-07 13:14:10,721][ INFO][PID:3803456] rsyncing of mockbuilder@54.162.85.13:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750 started [2026-08-07 13:14:10,727][ INFO][PID:3803456] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.162.85.13:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/build-10835750.rsync.log [2026-08-07 13:14:23,596][ INFO][PID:3803456] rsyncing finished. [2026-08-07 13:14:23,597][ INFO][PID:3803456] VM Release request [2026-08-07 13:14:23,647][ INFO][PID:3803456] Searching for 'success' file in resultdir [2026-08-07 13:14:23,648][ INFO][PID:3803456] Getting build details [2026-08-07 13:14:23,649][ INFO][PID:3803456] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750 [2026-08-07 13:14:23,651][ INFO][PID:3803456] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/Sunshine-0.0.5466-1.src.rpm [2026-08-07 13:14:23,652][ INFO][PID:3803456] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/Sunshine-0.0.5466-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5466-1'} [2026-08-07 13:14:23,654][ INFO][PID:3803456] Finished build: id=10835750 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466 chroot=srpm-builds [2026-08-07 13:14:23,660][ INFO][PID:3803456] Worker succeeded build, took 617.8897371292114 [2026-08-07 13:14:23,669][ INFO][PID:3803456] 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:5466", "submitter": null, "ended_on": 1786108463.660301, "started_on": 1786107845.7705638, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10835750", "build_id": 10835750, "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\": \"tmpjkpt3s17\", \"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:5466/srpm-builds/10835750/Sunshine-0.0.5466-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--c8876240-3a4e-4f54-8d3f-1ab9dd28bac8", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5466", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5466", "result_dir": "10835750", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5466-1", "id": 10835750, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-07 13:14:23,725][ INFO][PID:3803456] Sending fedora-messaging bus message in build.end [2026-08-07 13:14:23,766][ INFO][PID:3803456] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/builder-live.log by gzip [2026-08-07 13:14:23,772][ INFO][PID:3803456] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/builder-live.log' as PID 3894942 [2026-08-07 13:14:23,826][ INFO][PID:3803456] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/builder-live.log) [2026-08-07 13:14:23,828][ INFO][PID:3803456] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/backend.log by gzip [2026-08-07 13:14:23,831][ INFO][PID:3803456] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5466/srpm-builds/10835750/backend.log' as PID 3894960