[2026-09-13 22:33:17,479][ INFO][PID:2552779] Marking build as starting [2026-09-13 22:33:47,535][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:33:47,536][ INFO][PID:2552779] VM allocation process starts [2026-09-13 22:33:47,541][ INFO][PID:2552779] Trying to allocate VM: ResallocHost, ticket_id=5003630, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-13 22:33:50,549][ INFO][PID:2552779] Allocated host ResallocHost, ticket_id=5003630, hostname=44.201.7.9, name=aws_x86_64_reserved_prod_36689716_20260913_222732, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-13 22:33:50,605][ INFO][PID:2552779] Allocating ssh connection to builder [2026-09-13 22:33:50,606][ INFO][PID:2552779] Checking that builder machine is OK [2026-09-13 22:33:50,908][ INFO][PID:2552779] Installed copr-rpmbuild version: 1.9 [2026-09-13 22:33:50,908][ INFO][PID:2552779] Running remote command: copr-builder-ready srpm-builds [2026-09-13 22:33:51,065][ INFO][PID:2552779] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-13 22:33:51,066][ INFO][PID:2552779] Filling build.info file with builder info [2026-09-13 22:33:51,066][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:33:51,066][ INFO][PID:2552779] 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:5706", "submitter": null, "ended_on": null, "started_on": 1789338831.066739, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10982508", "build_id": 10982508, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -x\\nset -e\\n\\nresultdir=\\\"${COPR_RESULTDIR}\\\"\\ngit clone \\\"https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git\\\" --depth 1\\ncd \\\"${COPR_PACKAGE}\\\"\\n\\n# get info from the webhook payload\\nif [[ -z \\\"$REVISION\\\" ]]; then\\n # the hook_payload file contains webhook JSON payload (copr creates it for us);\\n # it is created only if the build is triggered by Custom webhook.\\n if [[ -f \\\"$resultdir\\\"/hook_payload ]]; then\\n git clone https://github.com/praiskup/copr-ci-tooling \\\\\\n \\\"$resultdir/cct\\\" --depth 1\\n export PATH=\\\"$resultdir/cct:$PATH\\\"\\n\\n echo \\\"---\\\"\\n cat \\\"$resultdir\\\"/hook_payload\\n echo \\\"---\\\"\\n\\n # use jq to get the pr_id from the hook_payload\\n PR=$(jq -r '.pr_id // empty' \\\"$resultdir\\\"/hook_payload)\\n if [[ -z \\\"$PR\\\" ]]; then\\n BRANCH=\\\"master\\\"\\n else\\n BRANCH=\\\"pr/${PR}\\\"\\n fi\\n\\n copr-travis-checkout \\\"$resultdir\\\"/hook_payload\\n fi\\nelse\\n git checkout \\\"$REVISION\\\"\\nfi\\n\\n# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\n\\n# get the tag of this commit IF it has one\\nTAG=$(git tag --points-at HEAD | head -n1)\\nif [[ -z \\\"$TAG\\\" ]]; then\\n TAG=\\\"0.0.$PR\\\"\\nfi\\nTAG=\\\"${TAG#v}\\\" # remove v prefix from the tag\\necho \\\"TAG=$TAG\\\"\\n\\n# get the commit\\nCOMMIT=$(git rev-parse HEAD)\\necho \\\"COMMIT=$COMMIT\\\"\\n\\n# move spec file to the correct location\\ndirectories=(\\n \\\".\\\"\\n \\\"./packaging/linux/copr\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [[ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"Found spec file in ${dir}\\\"\\n rpmlint \\\"${dir}/${COPR_PACKAGE}.spec\\\"\\n\\n mv \\\"${dir}/${COPR_PACKAGE}.spec\\\" \\\"${resultdir}\\\"\\n break\\n fi\\ndone\\n\\n# fail if the spec file is not in the resultdir\\nif [[ ! -f \\\"${resultdir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"ERROR: ${COPR_PACKAGE}.spec not found\\\" >&2\\n exit 1\\nfi\\n\\n# use sed to replace these values in the spec file\\nsed -i \\\"s|%global build_version 0|%global build_version ${TAG}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global branch 0|%global branch ${BRANCH}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global commit 0|%global commit ${COMMIT}|\\\" \\\"${resultdir}\\\"/*.spec\\n\\n# create a tarball of the source code, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmp2p_020g1\", \"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--c2632bf4-c2ec-46d5-b365-24e55811696a", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5706", "result_dir": "10982508", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10982508, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-13 22:34:21,122][ INFO][PID:2552779] Sending fedora-messaging bus message in build.start [2026-09-13 22:34:21,462][ INFO][PID:2552779] Sending fedora-messaging bus message in chroot.start [2026-09-13 22:34:21,480][ INFO][PID:2552779] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10982508 --detached [2026-09-13 22:34:22,082][ INFO][PID:2552779] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.201.7.9' (ED25519) to the list of known hosts. [2026-09-13 22:34:22,083][ INFO][PID:2552779] Downloading the builder-live.log file, attempt 1 [2026-09-13 22:34:22,084][ INFO][PID:2552779] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.201.7.9 copr-rpmbuild-log [2026-09-13 22:34:27,086][ INFO][PID:2552779] Periodic builder liveness probe: alive [2026-09-13 22:34:27,087][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:34:32,087][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:34:37,088][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:34:42,089][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:34:47,090][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:34:52,091][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:34:57,091][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:02,092][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:07,093][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:12,094][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:17,095][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:22,095][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:27,096][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:32,097][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:37,098][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:42,099][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:47,100][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:52,100][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:35:57,101][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:02,102][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:07,103][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:12,104][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:17,105][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:22,106][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:27,107][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:32,107][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:37,108][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:42,109][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:47,110][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:52,112][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:36:57,113][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:02,114][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:07,115][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:12,116][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:17,116][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:22,117][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:27,118][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:32,119][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:37,120][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:42,121][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:47,122][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:52,123][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:37:57,124][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:02,125][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:07,126][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:12,127][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:17,128][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:22,128][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:27,129][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:32,130][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:37,131][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:42,132][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:47,133][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:52,134][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:38:57,135][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:02,135][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:07,136][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:12,137][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:17,138][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:22,186][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:27,187][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:32,203][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:37,204][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:42,205][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:47,206][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:52,207][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:39:57,207][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:02,208][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:07,209][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:12,210][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:17,211][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:22,211][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:27,215][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:32,216][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:37,217][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:42,320][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:47,320][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:52,714][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:40:57,714][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:02,715][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:07,716][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:12,717][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:17,718][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:22,719][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:27,720][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:32,720][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:37,721][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:42,722][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:47,723][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:52,724][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:41:57,867][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:02,868][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:07,868][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:13,071][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:18,071][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:23,507][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:28,508][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:33,509][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:38,509][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:43,510][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:49,004][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:54,007][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:42:59,058][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:04,059][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:09,800][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:14,801][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:19,936][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:24,937][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:29,938][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:34,939][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:39,940][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:44,941][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:49,942][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:54,943][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:43:59,944][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:04,945][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:09,946][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:14,947][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:19,948][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:24,949][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:29,954][ INFO][PID:2552779] Periodic builder liveness probe: alive [2026-09-13 22:44:29,955][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:34,955][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:39,956][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:44,956][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:49,957][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:54,958][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:44:59,959][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:04,959][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:09,960][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:14,961][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:19,962][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:24,962][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:29,963][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:34,964][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:39,965][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:44,966][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:49,967][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:54,968][ INFO][PID:2552779] Checking for cancel request [2026-09-13 22:45:55,417][ INFO][PID:2552779] Downloading results from builder [2026-09-13 22:45:55,417][ INFO][PID:2552779] rsyncing of mockbuilder@44.201.7.9:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508 started [2026-09-13 22:45:55,418][ INFO][PID:2552779] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@44.201.7.9:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/build-10982508.rsync.log [2026-09-13 22:45:57,602][ INFO][PID:2552779] rsyncing finished. [2026-09-13 22:45:57,603][ INFO][PID:2552779] VM Release request [2026-09-13 22:45:57,614][ INFO][PID:2552779] Searching for 'success' file in resultdir [2026-09-13 22:45:57,615][ INFO][PID:2552779] Getting build details [2026-09-13 22:45:57,615][ INFO][PID:2552779] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508 [2026-09-13 22:45:57,616][ INFO][PID:2552779] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/Sunshine-0.0.5706-1.src.rpm [2026-09-13 22:45:57,616][ INFO][PID:2552779] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/Sunshine-0.0.5706-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5706-1'} [2026-09-13 22:45:57,616][ INFO][PID:2552779] Finished build: id=10982508 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706 chroot=srpm-builds [2026-09-13 22:45:57,616][ INFO][PID:2552779] Worker succeeded build, took 726.5500154495239 [2026-09-13 22:45:57,617][ INFO][PID:2552779] 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:5706", "submitter": null, "ended_on": 1789339557.6167545, "started_on": 1789338831.066739, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10982508", "build_id": 10982508, "package_name": "Sunshine", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/usr/bin/env bash\\nset -x\\nset -e\\n\\nresultdir=\\\"${COPR_RESULTDIR}\\\"\\ngit clone \\\"https://github.com/${COPR_OWNER}/${COPR_PACKAGE}.git\\\" --depth 1\\ncd \\\"${COPR_PACKAGE}\\\"\\n\\n# get info from the webhook payload\\nif [[ -z \\\"$REVISION\\\" ]]; then\\n # the hook_payload file contains webhook JSON payload (copr creates it for us);\\n # it is created only if the build is triggered by Custom webhook.\\n if [[ -f \\\"$resultdir\\\"/hook_payload ]]; then\\n git clone https://github.com/praiskup/copr-ci-tooling \\\\\\n \\\"$resultdir/cct\\\" --depth 1\\n export PATH=\\\"$resultdir/cct:$PATH\\\"\\n\\n echo \\\"---\\\"\\n cat \\\"$resultdir\\\"/hook_payload\\n echo \\\"---\\\"\\n\\n # use jq to get the pr_id from the hook_payload\\n PR=$(jq -r '.pr_id // empty' \\\"$resultdir\\\"/hook_payload)\\n if [[ -z \\\"$PR\\\" ]]; then\\n BRANCH=\\\"master\\\"\\n else\\n BRANCH=\\\"pr/${PR}\\\"\\n fi\\n\\n copr-travis-checkout \\\"$resultdir\\\"/hook_payload\\n fi\\nelse\\n git checkout \\\"$REVISION\\\"\\nfi\\n\\n# read optional exclusions from .copr-ci config file\\n# each non-empty, non-comment line is treated as a submodule path or directory\\n# to exclude (relative to the repo root, e.g. \\\"third-party/build-deps\\\")\\nEXCLUDED_PATHS=()\\nif [[ -f \\\".copr-ci\\\" ]]; then\\n echo \\\"Found .copr-ci config file, reading exclusions...\\\"\\n while IFS= read -r line || [[ -n \\\"$line\\\" ]]; do\\n # skip empty lines and comments\\n [[ -z \\\"$line\\\" || \\\"$line\\\" =~ ^# ]] && continue\\n EXCLUDED_PATHS+=(\\\"$line\\\")\\n echo \\\" Excluding: $line\\\"\\n done < \\\".copr-ci\\\"\\nfi\\n\\n# initialize the submodules, skipping any excluded paths\\nif [[ ${#EXCLUDED_PATHS[@]} -gt 0 ]]; then\\n # get all top-level submodule paths, then init only the ones not excluded\\n mapfile -t TOP_SUBMODULES < <(git submodule status | awk '{print $2}')\\n\\n for submodule in \\\"${TOP_SUBMODULES[@]}\\\"; do\\n skip=false\\n for excluded in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n # match exact path or any path that starts with the excluded prefix\\n if [[ \\\"$submodule\\\" == \\\"$excluded\\\" || \\\"$submodule\\\" == \\\"$excluded/\\\"* ]]; then\\n skip=true\\n break\\n fi\\n done\\n if [[ \\\"$skip\\\" == false ]]; then\\n git submodule update --init --recursive --depth 1 -- \\\"$submodule\\\"\\n else\\n echo \\\"Skipping submodule: $submodule\\\"\\n fi\\n done\\nelse\\n git submodule update --init --recursive --depth 1\\nfi\\n\\n# get the tag of this commit IF it has one\\nTAG=$(git tag --points-at HEAD | head -n1)\\nif [[ -z \\\"$TAG\\\" ]]; then\\n TAG=\\\"0.0.$PR\\\"\\nfi\\nTAG=\\\"${TAG#v}\\\" # remove v prefix from the tag\\necho \\\"TAG=$TAG\\\"\\n\\n# get the commit\\nCOMMIT=$(git rev-parse HEAD)\\necho \\\"COMMIT=$COMMIT\\\"\\n\\n# move spec file to the correct location\\ndirectories=(\\n \\\".\\\"\\n \\\"./packaging/linux/copr\\\"\\n)\\nfor dir in \\\"${directories[@]}\\\"; do\\n if [[ -f \\\"${dir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"Found spec file in ${dir}\\\"\\n rpmlint \\\"${dir}/${COPR_PACKAGE}.spec\\\"\\n\\n mv \\\"${dir}/${COPR_PACKAGE}.spec\\\" \\\"${resultdir}\\\"\\n break\\n fi\\ndone\\n\\n# fail if the spec file is not in the resultdir\\nif [[ ! -f \\\"${resultdir}/${COPR_PACKAGE}.spec\\\" ]]; then\\n echo \\\"ERROR: ${COPR_PACKAGE}.spec not found\\\" >&2\\n exit 1\\nfi\\n\\n# use sed to replace these values in the spec file\\nsed -i \\\"s|%global build_version 0|%global build_version ${TAG}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global branch 0|%global branch ${BRANCH}|\\\" \\\"${resultdir}\\\"/*.spec\\nsed -i \\\"s|%global commit 0|%global commit ${COMMIT}|\\\" \\\"${resultdir}\\\"/*.spec\\n\\n# create a tarball of the source code, excluding any configured paths\\nTAR_EXCLUDE_ARGS=()\\nfor path in \\\"${EXCLUDED_PATHS[@]}\\\"; do\\n TAR_EXCLUDE_ARGS+=(\\\"--exclude=./${path}\\\")\\ndone\\ntar -czf \\\"${resultdir}/tarball.tar.gz\\\" \\\"${TAR_EXCLUDE_ARGS[@]}\\\" .\\n\", \"chroot\": \"fedora-45-x86_64\", \"builddeps\": \"git jq python3 rpmlint\", \"resultdir\": \"\", \"repos\": \"\", \"tmp\": \"tmp2p_020g1\", \"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:5706/srpm-builds/10982508/Sunshine-0.0.5706-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--c2632bf4-c2ec-46d5-b365-24e55811696a", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {}, "opensuse-leap-16.0": {}, "opensuse-tumbleweed": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5706", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide", "opensuse-leap-16.0", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5706", "result_dir": "10982508", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5706-1", "id": 10982508, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-13 22:46:27,702][ INFO][PID:2552779] Sending fedora-messaging bus message in build.end [2026-09-13 22:46:27,721][ INFO][PID:2552779] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/builder-live.log by gzip [2026-09-13 22:46:27,722][ INFO][PID:2552779] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/builder-live.log' as PID 2757386 [2026-09-13 22:46:27,726][ INFO][PID:2552779] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/builder-live.log) [2026-09-13 22:46:27,726][ INFO][PID:2552779] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/backend.log by gzip [2026-09-13 22:46:27,727][ INFO][PID:2552779] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5706/srpm-builds/10982508/backend.log' as PID 2757389