[2026-07-15 07:37:31,895][ INFO][PID:1097590] Marking build as starting [2026-07-15 07:37:31,933][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:37:31,934][ INFO][PID:1097590] VM allocation process starts [2026-07-15 07:37:31,945][ INFO][PID:1097590] Trying to allocate VM: ResallocHost, ticket_id=3909452, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 07:37:34,999][ INFO][PID:1097590] Allocated host ResallocHost, ticket_id=3909452, hostname=44.222.129.82, name=aws_x86_64_reserved_prod_13089233_20260715_073119, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 07:37:34,999][ INFO][PID:1097590] Allocating ssh connection to builder [2026-07-15 07:37:35,000][ INFO][PID:1097590] Checking that builder machine is OK [2026-07-15 07:37:35,317][ INFO][PID:1097590] Installed copr-rpmbuild version: 1.8 [2026-07-15 07:37:35,347][ INFO][PID:1097590] Running remote command: copr-builder-ready srpm-builds [2026-07-15 07:37:35,530][ INFO][PID:1097590] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-15 07:37:35,531][ INFO][PID:1097590] Filling build.info file with builder info [2026-07-15 07:37:35,532][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:37:35,533][ INFO][PID:1097590] 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:5418", "submitter": null, "ended_on": null, "started_on": 1784101055.5335777, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10720457", "build_id": 10720457, "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\": \"tmpe_ani2j8\", \"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--55b05305-70ae-4e44-96ea-31a4924c17dc", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5418", "result_dir": "10720457", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10720457, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 07:37:35,572][ INFO][PID:1097590] Sending fedora-messaging bus message in build.start [2026-07-15 07:37:36,028][ INFO][PID:1097590] Sending fedora-messaging bus message in chroot.start [2026-07-15 07:37:36,058][ INFO][PID:1097590] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10720457 --detached [2026-07-15 07:37:36,535][ INFO][PID:1097590] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.222.129.82' (ED25519) to the list of known hosts. [2026-07-15 07:37:36,536][ INFO][PID:1097590] Downloading the builder-live.log file, attempt 1 [2026-07-15 07:37:36,538][ INFO][PID:1097590] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.222.129.82 copr-rpmbuild-log [2026-07-15 07:37:41,542][ INFO][PID:1097590] Periodic builder liveness probe: alive [2026-07-15 07:37:41,543][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:37:46,544][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:37:51,545][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:37:56,546][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:01,547][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:06,549][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:11,550][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:16,551][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:21,553][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:26,554][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:31,555][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:36,556][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:41,558][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:46,559][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:51,560][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:38:56,562][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:01,563][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:06,564][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:11,566][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:16,567][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:21,568][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:26,570][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:32,307][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:37,309][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:42,310][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:47,313][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:52,314][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:39:57,315][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:02,317][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:07,318][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:12,319][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:17,321][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:22,322][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:27,323][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:32,324][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:37,325][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:42,327][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:47,328][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:52,329][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:40:57,330][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:02,332][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:07,333][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:12,335][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:17,337][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:22,338][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:27,339][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:32,340][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:37,342][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:42,343][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:47,345][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:52,346][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:41:57,348][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:02,350][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:07,351][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:12,353][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:17,356][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:22,360][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:27,361][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:32,362][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:37,364][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:42,365][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:47,366][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:52,368][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:42:57,369][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:02,370][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:07,371][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:12,372][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:17,373][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:22,374][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:27,376][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:32,378][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:37,379][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:42,380][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:47,381][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:52,397][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:43:57,429][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:02,431][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:07,433][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:12,434][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:17,436][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:22,437][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:27,438][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:32,440][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:37,441][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:42,442][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:47,444][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:52,445][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:44:57,446][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:02,448][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:07,450][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:12,451][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:17,452][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:22,453][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:27,454][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:32,511][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:37,513][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:42,559][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:47,561][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:52,562][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:45:57,563][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:02,567][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:07,569][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:12,570][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:17,572][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:22,573][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:27,574][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:32,576][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:37,578][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:42,580][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:47,581][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:52,582][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:46:57,583][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:47:02,585][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:47:07,586][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:47:12,588][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:47:17,590][ INFO][PID:1097590] Checking for cancel request [2026-07-15 07:47:18,702][ INFO][PID:1097590] Downloading results from builder [2026-07-15 07:47:18,836][ INFO][PID:1097590] rsyncing of mockbuilder@44.222.129.82:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457 started [2026-07-15 07:47:19,048][ INFO][PID:1097590] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.222.129.82:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/build-10720457.rsync.log [2026-07-15 07:47:24,412][ INFO][PID:1097590] rsyncing finished. [2026-07-15 07:47:24,421][ INFO][PID:1097590] VM Release request [2026-07-15 07:47:25,225][ INFO][PID:1097590] Searching for 'success' file in resultdir [2026-07-15 07:47:25,421][ INFO][PID:1097590] Getting build details [2026-07-15 07:47:25,425][ INFO][PID:1097590] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457 [2026-07-15 07:47:25,673][ INFO][PID:1097590] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/Sunshine-0.0.5418-1.src.rpm [2026-07-15 07:47:25,683][ INFO][PID:1097590] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/Sunshine-0.0.5418-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5418-1'} [2026-07-15 07:47:25,713][ INFO][PID:1097590] Finished build: id=10720457 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418 chroot=srpm-builds [2026-07-15 07:47:26,032][ INFO][PID:1097590] Worker succeeded build, took 590.4967405796051 [2026-07-15 07:47:26,083][ INFO][PID:1097590] 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:5418", "submitter": null, "ended_on": 1784101646.0303183, "started_on": 1784101055.5335777, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10720457", "build_id": 10720457, "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\": \"tmpe_ani2j8\", \"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:5418/srpm-builds/10720457/Sunshine-0.0.5418-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--55b05305-70ae-4e44-96ea-31a4924c17dc", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5418", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5418", "result_dir": "10720457", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5418-1", "id": 10720457, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 07:47:28,200][ INFO][PID:1097590] Sending fedora-messaging bus message in build.end [2026-07-15 07:47:29,248][ INFO][PID:1097590] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/builder-live.log by gzip [2026-07-15 07:47:29,313][ INFO][PID:1097590] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/builder-live.log' as PID 1137158 [2026-07-15 07:47:29,378][ INFO][PID:1097590] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/builder-live.log) [2026-07-15 07:47:29,394][ INFO][PID:1097590] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/backend.log by gzip [2026-07-15 07:47:29,401][ INFO][PID:1097590] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5418/srpm-builds/10720457/backend.log' as PID 1137165