[2026-08-14 18:10:31,016][ INFO][PID:3257035] Marking build as starting [2026-08-14 18:10:31,092][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:10:31,101][ INFO][PID:3257035] VM allocation process starts [2026-08-14 18:10:31,127][ INFO][PID:3257035] Trying to allocate VM: ResallocHost, ticket_id=4453375, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-14 18:10:36,132][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:10:37,248][ INFO][PID:3257035] Allocated host ResallocHost, ticket_id=4453375, hostname=98.84.29.249, name=aws_x86_64_reserved_prod_18529921_20260814_180844, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-14 18:10:37,249][ INFO][PID:3257035] Allocating ssh connection to builder [2026-08-14 18:10:37,252][ INFO][PID:3257035] Checking that builder machine is OK [2026-08-14 18:10:37,685][ INFO][PID:3257035] Installed copr-rpmbuild version: 1.9 [2026-08-14 18:10:37,692][ INFO][PID:3257035] Running remote command: copr-builder-ready srpm-builds [2026-08-14 18:10:37,980][ INFO][PID:3257035] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-14 18:10:37,983][ INFO][PID:3257035] Filling build.info file with builder info [2026-08-14 18:10:37,984][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:10:37,985][ INFO][PID:3257035] 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:5368", "submitter": null, "ended_on": null, "started_on": 1786731037.9852667, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10866110", "build_id": 10866110, "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\": \"tmp_dlr8557\", \"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--097aca6f-f27f-4f9b-91a3-f706fc2b37bd", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10866110", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10866110, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-14 18:10:38,041][ INFO][PID:3257035] Sending fedora-messaging bus message in build.start [2026-08-14 18:10:39,439][ INFO][PID:3257035] Sending fedora-messaging bus message in chroot.start [2026-08-14 18:10:39,537][ INFO][PID:3257035] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10866110 --detached [2026-08-14 18:10:40,053][ INFO][PID:3257035] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.84.29.249' (ED25519) to the list of known hosts. [2026-08-14 18:10:40,060][ INFO][PID:3257035] Downloading the builder-live.log file, attempt 1 [2026-08-14 18:10:40,077][ INFO][PID:3257035] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.84.29.249 copr-rpmbuild-log [2026-08-14 18:10:45,088][ INFO][PID:3257035] Periodic builder liveness probe: alive [2026-08-14 18:10:45,091][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:10:50,101][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:10:55,113][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:00,122][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:05,126][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:10,131][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:15,136][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:20,139][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:25,142][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:30,145][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:35,148][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:40,154][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:45,161][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:50,164][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:11:55,165][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:00,167][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:05,196][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:10,202][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:15,209][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:20,211][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:25,221][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:30,230][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:35,236][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:40,256][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:45,304][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:50,309][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:12:55,326][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:00,351][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:05,354][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:10,382][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:15,490][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:20,493][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:25,497][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:30,501][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:35,513][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:40,515][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:45,967][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:50,971][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:13:55,972][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:00,977][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:05,978][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:10,980][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:15,984][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:20,986][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:25,987][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:30,988][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:35,990][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:40,992][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:46,994][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:51,996][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:14:56,997][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:01,999][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:07,000][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:12,002][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:17,003][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:22,005][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:27,006][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:32,008][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:37,010][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:42,011][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:47,012][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:52,014][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:15:57,015][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:02,018][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:07,038][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:12,040][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:17,044][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:22,046][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:27,047][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:32,049][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:37,050][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:42,064][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:47,065][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:52,067][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:16:57,068][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:02,069][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:07,071][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:12,081][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:17,086][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:22,087][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:27,088][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:32,108][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:37,109][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:42,111][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:47,112][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:52,113][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:17:57,115][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:02,659][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:07,676][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:12,720][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:17,721][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:22,722][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:27,724][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:32,725][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:37,726][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:42,728][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:47,729][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:52,731][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:18:57,732][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:02,733][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:07,734][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:12,736][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:17,738][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:22,740][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:27,741][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:32,742][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:37,743][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:42,745][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:47,746][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:52,748][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:19:57,750][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:02,751][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:07,752][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:12,754][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:17,755][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:22,757][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:27,758][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:32,759][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:37,761][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:42,762][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:47,772][ INFO][PID:3257035] Periodic builder liveness probe: alive [2026-08-14 18:20:47,777][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:52,780][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:20:57,811][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:02,813][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:07,814][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:12,815][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:17,816][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:22,818][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:27,819][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:32,820][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:37,822][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:42,823][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:47,826][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:52,827][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:21:57,830][ INFO][PID:3257035] Checking for cancel request [2026-08-14 18:22:01,918][ INFO][PID:3257035] Downloading results from builder [2026-08-14 18:22:01,919][ INFO][PID:3257035] rsyncing of mockbuilder@98.84.29.249:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110 started [2026-08-14 18:22:01,920][ INFO][PID:3257035] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.84.29.249:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/build-10866110.rsync.log [2026-08-14 18:22:06,743][ INFO][PID:3257035] rsyncing finished. [2026-08-14 18:22:06,744][ INFO][PID:3257035] VM Release request [2026-08-14 18:22:06,759][ INFO][PID:3257035] Searching for 'success' file in resultdir [2026-08-14 18:22:06,760][ INFO][PID:3257035] Getting build details [2026-08-14 18:22:06,761][ INFO][PID:3257035] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110 [2026-08-14 18:22:06,762][ INFO][PID:3257035] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/Sunshine-0.0.5368-1.src.rpm [2026-08-14 18:22:06,762][ INFO][PID:3257035] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-08-14 18:22:06,763][ INFO][PID:3257035] Finished build: id=10866110 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-08-14 18:22:06,763][ INFO][PID:3257035] Worker succeeded build, took 688.7786545753479 [2026-08-14 18:22:06,764][ INFO][PID:3257035] 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:5368", "submitter": null, "ended_on": 1786731726.7639213, "started_on": 1786731037.9852667, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10866110", "build_id": 10866110, "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\": \"tmp_dlr8557\", \"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:5368/srpm-builds/10866110/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--097aca6f-f27f-4f9b-91a3-f706fc2b37bd", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10866110", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10866110, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-14 18:22:06,810][ INFO][PID:3257035] Sending fedora-messaging bus message in build.end [2026-08-14 18:22:06,837][ INFO][PID:3257035] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/builder-live.log by gzip [2026-08-14 18:22:06,839][ INFO][PID:3257035] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/builder-live.log' as PID 3326995 [2026-08-14 18:22:06,913][ INFO][PID:3257035] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/builder-live.log) [2026-08-14 18:22:06,914][ INFO][PID:3257035] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/backend.log by gzip [2026-08-14 18:22:06,915][ INFO][PID:3257035] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10866110/backend.log' as PID 3326998