[2026-08-20 01:03:48,122][ INFO][PID:3140982] Marking build as starting [2026-08-20 01:03:48,186][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:03:48,188][ INFO][PID:3140982] VM allocation process starts [2026-08-20 01:03:48,204][ INFO][PID:3140982] Trying to allocate VM: ResallocHost, ticket_id=4530125, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-20 01:03:53,206][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:03:58,208][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:03,209][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:08,213][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:13,223][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:18,225][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:23,228][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:26,303][ INFO][PID:3140982] Allocated host ResallocHost, ticket_id=4530125, hostname=13.221.224.243, name=aws_x86_64_reserved_prod_19481589_20260820_010213, requested_tags=['arch_x86_64', 'copr_builder'] [2026-08-20 01:04:26,304][ INFO][PID:3140982] Allocating ssh connection to builder [2026-08-20 01:04:26,308][ INFO][PID:3140982] Checking that builder machine is OK [2026-08-20 01:04:26,677][ INFO][PID:3140982] Installed copr-rpmbuild version: 1.9 [2026-08-20 01:04:26,679][ INFO][PID:3140982] Running remote command: copr-builder-ready srpm-builds [2026-08-20 01:04:26,882][ INFO][PID:3140982] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-08-20 01:04:26,885][ INFO][PID:3140982] Filling build.info file with builder info [2026-08-20 01:04:26,886][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:26,893][ INFO][PID:3140982] 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:5531", "submitter": null, "ended_on": null, "started_on": 1787187866.8936436, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10882434", "build_id": 10882434, "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\": \"tmpdqp8uy6_\", \"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--ead7960c-a0e1-41e1-b7af-33c33d2b54dc", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5531", "result_dir": "10882434", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10882434, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-20 01:04:26,994][ INFO][PID:3140982] Sending fedora-messaging bus message in build.start [2026-08-20 01:04:28,037][ INFO][PID:3140982] Sending fedora-messaging bus message in chroot.start [2026-08-20 01:04:28,073][ INFO][PID:3140982] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10882434 --detached [2026-08-20 01:04:28,579][ INFO][PID:3140982] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.221.224.243' (ED25519) to the list of known hosts. [2026-08-20 01:04:28,580][ INFO][PID:3140982] Downloading the builder-live.log file, attempt 1 [2026-08-20 01:04:28,582][ INFO][PID:3140982] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.221.224.243 copr-rpmbuild-log [2026-08-20 01:04:33,591][ INFO][PID:3140982] Periodic builder liveness probe: alive [2026-08-20 01:04:33,592][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:38,594][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:43,596][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:48,597][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:53,607][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:04:58,610][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:03,612][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:08,618][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:13,623][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:18,625][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:23,626][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:28,629][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:33,634][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:38,636][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:43,637][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:48,639][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:53,646][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:05:58,648][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:03,649][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:08,651][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:13,652][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:18,654][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:23,655][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:28,656][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:33,659][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:38,661][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:43,663][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:48,665][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:53,666][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:06:58,669][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:03,670][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:08,672][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:13,674][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:18,680][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:23,682][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:28,684][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:33,686][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:38,691][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:43,692][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:48,694][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:53,696][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:07:58,697][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:03,699][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:08,700][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:13,702][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:18,703][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:23,710][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:28,714][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:33,715][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:38,717][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:43,720][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:48,722][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:53,723][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:08:58,725][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:03,729][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:08,732][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:13,733][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:18,736][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:23,744][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:28,753][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:33,755][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:38,757][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:43,764][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:48,766][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:53,771][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:09:58,773][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:03,775][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:08,779][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:13,780][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:18,782][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:23,788][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:28,791][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:33,792][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:38,795][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:43,799][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:48,801][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:53,803][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:10:58,809][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:03,813][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:08,819][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:13,820][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:18,825][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:23,827][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:28,831][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:33,838][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:38,844][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:43,846][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:48,851][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:53,853][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:11:58,855][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:03,859][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:08,867][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:13,868][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:18,870][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:23,873][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:28,878][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:33,880][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:38,881][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:43,883][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:48,885][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:53,887][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:12:58,889][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:03,890][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:08,892][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:13,896][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:18,899][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:23,901][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:28,903][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:33,905][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:38,907][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:43,909][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:48,910][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:53,913][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:13:58,916][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:03,918][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:08,919][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:13,921][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:18,923][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:23,924][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:28,926][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:33,941][ INFO][PID:3140982] Periodic builder liveness probe: alive [2026-08-20 01:14:33,942][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:38,943][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:43,945][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:48,951][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:53,953][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:14:58,955][ INFO][PID:3140982] Checking for cancel request [2026-08-20 01:15:00,707][ INFO][PID:3140982] Downloading results from builder [2026-08-20 01:15:00,708][ INFO][PID:3140982] rsyncing of mockbuilder@13.221.224.243:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434 started [2026-08-20 01:15:00,709][ INFO][PID:3140982] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.221.224.243:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/build-10882434.rsync.log [2026-08-20 01:15:06,475][ INFO][PID:3140982] rsyncing finished. [2026-08-20 01:15:06,477][ INFO][PID:3140982] VM Release request [2026-08-20 01:15:06,496][ INFO][PID:3140982] Searching for 'success' file in resultdir [2026-08-20 01:15:06,499][ INFO][PID:3140982] Getting build details [2026-08-20 01:15:06,502][ INFO][PID:3140982] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434 [2026-08-20 01:15:06,504][ INFO][PID:3140982] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/Sunshine-0.0.5531-1.src.rpm [2026-08-20 01:15:06,505][ INFO][PID:3140982] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/Sunshine-0.0.5531-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5531-1'} [2026-08-20 01:15:06,506][ INFO][PID:3140982] Finished build: id=10882434 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531 chroot=srpm-builds [2026-08-20 01:15:06,508][ INFO][PID:3140982] Worker succeeded build, took 639.6147756576538 [2026-08-20 01:15:06,509][ INFO][PID:3140982] 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:5531", "submitter": null, "ended_on": 1787188506.5084193, "started_on": 1787187866.8936436, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10882434", "build_id": 10882434, "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\": \"tmpdqp8uy6_\", \"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:5531/srpm-builds/10882434/Sunshine-0.0.5531-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--ead7960c-a0e1-41e1-b7af-33c33d2b54dc", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-45": {}, "fedora-rawhide": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5531", "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" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-45", "fedora-rawhide" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5531", "result_dir": "10882434", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5531-1", "id": 10882434, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-08-20 01:15:06,578][ INFO][PID:3140982] Sending fedora-messaging bus message in build.end [2026-08-20 01:15:06,614][ INFO][PID:3140982] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/builder-live.log by gzip [2026-08-20 01:15:06,619][ INFO][PID:3140982] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/builder-live.log' as PID 3247479 [2026-08-20 01:15:06,652][ INFO][PID:3140982] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/builder-live.log) [2026-08-20 01:15:06,654][ INFO][PID:3140982] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/backend.log by gzip [2026-08-20 01:15:06,656][ INFO][PID:3140982] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5531/srpm-builds/10882434/backend.log' as PID 3247488