[2026-07-05 07:23:04,737][ INFO][PID:2534421] Marking build as starting [2026-07-05 07:23:04,777][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:04,778][ INFO][PID:2534421] VM allocation process starts [2026-07-05 07:23:04,788][ INFO][PID:2534421] Trying to allocate VM: ResallocHost, ticket_id=3756181, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-05 07:23:07,801][ INFO][PID:2534421] Allocated host ResallocHost, ticket_id=3756181, hostname=34.204.85.245, name=aws_x86_64_reserved_prod_12893283_20260705_070900, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-05 07:23:07,802][ INFO][PID:2534421] Allocating ssh connection to builder [2026-07-05 07:23:07,803][ INFO][PID:2534421] Checking that builder machine is OK [2026-07-05 07:23:08,132][ INFO][PID:2534421] Installed copr-rpmbuild version: 1.8 [2026-07-05 07:23:08,133][ INFO][PID:2534421] Running remote command: copr-builder-ready srpm-builds [2026-07-05 07:23:08,326][ INFO][PID:2534421] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-05 07:23:08,327][ INFO][PID:2534421] Filling build.info file with builder info [2026-07-05 07:23:08,429][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:08,431][ INFO][PID:2534421] 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:5362", "submitter": null, "ended_on": null, "started_on": 1783236188.4316952, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10682829", "build_id": 10682829, "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\": \"tmpepv3b886\", \"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--8fbd0a24-dbe5-48a6-a37f-b0bca41722b7", "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:5362", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5362", "result_dir": "10682829", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10682829, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-05 07:23:08,471][ INFO][PID:2534421] Sending fedora-messaging bus message in build.start [2026-07-05 07:23:09,410][ INFO][PID:2534421] Sending fedora-messaging bus message in chroot.start [2026-07-05 07:23:09,439][ INFO][PID:2534421] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10682829 --detached [2026-07-05 07:23:09,964][ INFO][PID:2534421] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '34.204.85.245' (ED25519) to the list of known hosts. [2026-07-05 07:23:09,965][ INFO][PID:2534421] Downloading the builder-live.log file, attempt 1 [2026-07-05 07:23:09,975][ INFO][PID:2534421] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.204.85.245 copr-rpmbuild-log [2026-07-05 07:23:14,971][ INFO][PID:2534421] Periodic builder liveness probe: alive [2026-07-05 07:23:14,972][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:19,973][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:24,974][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:29,987][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:35,294][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:40,296][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:45,298][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:50,299][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:23:55,319][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:00,321][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:05,323][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:10,324][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:15,325][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:20,327][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:25,329][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:30,349][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:35,354][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:40,355][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:45,379][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:50,382][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:24:55,383][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:00,384][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:05,386][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:10,387][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:15,389][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:20,390][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:25,392][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:30,396][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:35,403][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:40,405][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:45,406][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:50,408][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:25:55,429][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:00,439][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:05,526][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:10,551][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:15,556][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:20,558][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:25,560][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:30,650][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:35,652][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:40,653][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:45,654][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:50,693][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:26:55,694][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:00,796][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:05,870][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:10,872][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:15,873][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:20,874][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:25,877][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:30,879][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:35,880][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:40,888][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:45,892][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:50,894][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:27:55,904][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:00,906][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:05,935][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:10,975][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:15,977][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:21,026][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:26,032][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:31,095][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:36,097][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:41,098][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:46,100][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:51,102][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:28:56,103][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:01,171][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:06,173][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:11,492][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:16,495][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:21,507][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:26,530][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:31,532][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:36,565][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:41,581][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:46,652][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:51,679][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:29:56,700][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:01,780][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:06,789][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:11,790][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:16,859][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:21,873][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:26,883][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:31,893][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:36,909][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:42,506][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:47,508][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:52,511][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:30:57,516][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:02,520][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:07,522][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:12,523][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:17,524][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:22,527][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:27,528][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:32,531][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:37,537][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:42,540][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:47,542][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:52,544][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:31:57,545][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:02,547][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:07,551][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:12,599][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:17,602][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:22,611][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:27,629][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:32,638][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:37,678][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:42,682][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:47,686][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:52,688][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:32:57,693][ INFO][PID:2534421] Checking for cancel request [2026-07-05 07:33:00,541][ INFO][PID:2534421] Downloading results from builder [2026-07-05 07:33:00,578][ INFO][PID:2534421] rsyncing of mockbuilder@34.204.85.245:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829 started [2026-07-05 07:33:00,660][ INFO][PID:2534421] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.204.85.245:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/build-10682829.rsync.log [2026-07-05 07:33:04,953][ INFO][PID:2534421] rsyncing finished. [2026-07-05 07:33:04,958][ INFO][PID:2534421] VM Release request [2026-07-05 07:33:05,232][ INFO][PID:2534421] Searching for 'success' file in resultdir [2026-07-05 07:33:05,301][ INFO][PID:2534421] Getting build details [2026-07-05 07:33:05,305][ INFO][PID:2534421] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829 [2026-07-05 07:33:05,383][ INFO][PID:2534421] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/Sunshine-0.0.5362-1.src.rpm [2026-07-05 07:33:05,387][ INFO][PID:2534421] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/Sunshine-0.0.5362-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5362-1'} [2026-07-05 07:33:05,403][ INFO][PID:2534421] Finished build: id=10682829 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362 chroot=srpm-builds [2026-07-05 07:33:05,512][ INFO][PID:2534421] Worker succeeded build, took 597.0791490077972 [2026-07-05 07:33:05,528][ INFO][PID:2534421] 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:5362", "submitter": null, "ended_on": 1783236785.5108442, "started_on": 1783236188.4316952, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10682829", "build_id": 10682829, "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\": \"tmpepv3b886\", \"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:5362/srpm-builds/10682829/Sunshine-0.0.5362-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--8fbd0a24-dbe5-48a6-a37f-b0bca41722b7", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5362", "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:5362", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5362", "result_dir": "10682829", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5362-1", "id": 10682829, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-05 07:33:06,494][ INFO][PID:2534421] Sending fedora-messaging bus message in build.end [2026-07-05 07:33:07,092][ INFO][PID:2534421] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/builder-live.log by gzip [2026-07-05 07:33:07,117][ INFO][PID:2534421] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/builder-live.log' as PID 2567960 [2026-07-05 07:33:07,212][ INFO][PID:2534421] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/builder-live.log) [2026-07-05 07:33:07,217][ INFO][PID:2534421] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/backend.log by gzip [2026-07-05 07:33:07,218][ INFO][PID:2534421] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5362/srpm-builds/10682829/backend.log' as PID 2567961