[2026-06-29 18:25:33,256][ INFO][PID:3054364] Marking build as starting [2026-06-29 18:25:33,294][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:25:33,296][ INFO][PID:3054364] VM allocation process starts [2026-06-29 18:25:33,307][ INFO][PID:3054364] Trying to allocate VM: ResallocHost, ticket_id=3670553, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-29 18:25:36,321][ INFO][PID:3054364] Allocated host ResallocHost, ticket_id=3670553, hostname=100.58.212.57, name=aws_x86_64_reserved_prod_12781306_20260629_182216, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-29 18:25:36,322][ INFO][PID:3054364] Allocating ssh connection to builder [2026-06-29 18:25:36,323][ INFO][PID:3054364] Checking that builder machine is OK [2026-06-29 18:25:36,635][ INFO][PID:3054364] Installed copr-rpmbuild version: 1.8 [2026-06-29 18:25:36,636][ INFO][PID:3054364] Running remote command: copr-builder-ready srpm-builds [2026-06-29 18:25:36,827][ INFO][PID:3054364] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-29 18:25:36,828][ INFO][PID:3054364] Filling build.info file with builder info [2026-06-29 18:25:36,830][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:25:36,832][ INFO][PID:3054364] 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:5356", "submitter": null, "ended_on": null, "started_on": 1782757536.8322084, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10661547", "build_id": 10661547, "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\": \"tmpp9o9jt8q\", \"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--fce759df-cbb1-417f-8a26-1a041adade62", "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:5356", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5356", "result_dir": "10661547", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10661547, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-29 18:25:36,874][ INFO][PID:3054364] Sending fedora-messaging bus message in build.start [2026-06-29 18:25:37,408][ INFO][PID:3054364] Sending fedora-messaging bus message in chroot.start [2026-06-29 18:25:37,438][ INFO][PID:3054364] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10661547 --detached [2026-06-29 18:25:37,914][ INFO][PID:3054364] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.58.212.57' (ED25519) to the list of known hosts. [2026-06-29 18:25:37,915][ INFO][PID:3054364] Downloading the builder-live.log file, attempt 1 [2026-06-29 18:25:37,918][ INFO][PID:3054364] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.58.212.57 copr-rpmbuild-log [2026-06-29 18:25:42,921][ INFO][PID:3054364] Periodic builder liveness probe: alive [2026-06-29 18:25:42,922][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:25:47,923][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:25:52,924][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:25:57,926][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:02,927][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:07,928][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:12,957][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:17,958][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:22,960][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:27,963][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:32,964][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:37,966][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:42,967][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:47,969][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:52,970][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:26:57,971][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:03,042][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:08,043][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:13,045][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:18,046][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:23,048][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:28,050][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:33,051][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:38,052][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:43,055][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:48,056][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:53,057][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:27:58,059][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:03,060][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:08,061][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:13,063][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:18,065][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:23,066][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:28,229][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:33,231][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:38,232][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:43,233][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:48,235][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:53,236][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:28:58,238][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:03,239][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:08,244][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:13,246][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:18,247][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:23,248][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:28,307][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:33,310][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:38,312][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:43,315][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:48,317][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:53,318][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:29:58,322][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:03,327][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:08,338][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:13,356][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:18,369][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:23,371][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:28,375][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:33,377][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:38,379][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:43,380][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:48,413][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:53,424][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:30:58,438][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:03,439][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:08,441][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:13,443][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:18,444][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:23,455][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:28,457][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:33,478][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:38,510][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:43,525][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:48,578][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:53,579][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:31:58,588][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:03,597][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:08,625][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:13,628][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:18,630][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:23,631][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:28,633][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:33,653][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:38,661][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:43,663][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:48,667][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:53,716][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:32:58,717][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:03,720][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:08,729][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:13,730][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:18,732][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:23,735][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:28,736][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:33,738][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:38,739][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:43,752][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:48,760][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:53,761][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:33:58,764][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:03,796][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:08,798][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:13,830][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:18,834][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:23,836][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:28,837][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:33,841][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:38,842][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:43,844][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:48,846][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:53,850][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:34:58,852][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:35:03,853][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:35:08,854][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:35:13,856][ INFO][PID:3054364] Checking for cancel request [2026-06-29 18:35:18,828][ INFO][PID:3054364] Downloading results from builder [2026-06-29 18:35:19,081][ INFO][PID:3054364] rsyncing of mockbuilder@100.58.212.57:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547 started [2026-06-29 18:35:19,868][ INFO][PID:3054364] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@100.58.212.57:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/build-10661547.rsync.log [2026-06-29 18:35:24,199][ INFO][PID:3054364] rsyncing finished. [2026-06-29 18:35:24,224][ INFO][PID:3054364] VM Release request [2026-06-29 18:35:25,510][ INFO][PID:3054364] Searching for 'success' file in resultdir [2026-06-29 18:35:25,892][ INFO][PID:3054364] Getting build details [2026-06-29 18:35:25,901][ INFO][PID:3054364] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547 [2026-06-29 18:35:26,419][ INFO][PID:3054364] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/Sunshine-0.0.5356-1.src.rpm [2026-06-29 18:35:26,436][ INFO][PID:3054364] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/Sunshine-0.0.5356-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5356-1'} [2026-06-29 18:35:26,558][ INFO][PID:3054364] Finished build: id=10661547 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356 chroot=srpm-builds [2026-06-29 18:35:27,381][ INFO][PID:3054364] Worker succeeded build, took 590.5419890880585 [2026-06-29 18:35:27,506][ INFO][PID:3054364] 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:5356", "submitter": null, "ended_on": 1782758127.3741975, "started_on": 1782757536.8322084, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10661547", "build_id": 10661547, "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\": \"tmpp9o9jt8q\", \"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:5356/srpm-builds/10661547/Sunshine-0.0.5356-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--fce759df-cbb1-417f-8a26-1a041adade62", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5356", "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:5356", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5356", "result_dir": "10661547", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5356-1", "id": 10661547, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-29 18:35:37,231][ INFO][PID:3054364] Sending fedora-messaging bus message in build.end [2026-06-29 18:35:39,422][ INFO][PID:3054364] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/builder-live.log by gzip [2026-06-29 18:35:39,491][ INFO][PID:3054364] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/builder-live.log' as PID 3095694 [2026-06-29 18:35:39,585][ INFO][PID:3054364] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/builder-live.log) [2026-06-29 18:35:39,597][ INFO][PID:3054364] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/backend.log by gzip [2026-06-29 18:35:39,598][ INFO][PID:3054364] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5356/srpm-builds/10661547/backend.log' as PID 3095696