[2026-09-11 13:57:33,209][ INFO][PID:3533357] Marking build as starting [2026-09-11 13:57:33,237][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:57:33,238][ INFO][PID:3533357] VM allocation process starts [2026-09-11 13:57:33,244][ INFO][PID:3533357] Trying to allocate VM: ResallocHost, ticket_id=4973497, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-11 13:57:36,253][ INFO][PID:3533357] Allocated host ResallocHost, ticket_id=4973497, hostname=3.227.233.47, name=aws_x86_64_reserved_prod_34410124_20260911_135508, requested_tags=['arch_x86_64', 'copr_builder'] [2026-09-11 13:57:36,254][ INFO][PID:3533357] Allocating ssh connection to builder [2026-09-11 13:57:36,254][ INFO][PID:3533357] Checking that builder machine is OK [2026-09-11 13:57:36,566][ INFO][PID:3533357] Installed copr-rpmbuild version: 1.9 [2026-09-11 13:57:36,567][ INFO][PID:3533357] Running remote command: copr-builder-ready srpm-builds [2026-09-11 13:57:36,736][ INFO][PID:3533357] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-09-11 13:57:36,737][ INFO][PID:3533357] Filling build.info file with builder info [2026-09-11 13:57:36,737][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:57:36,738][ INFO][PID:3533357] 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:5688", "submitter": null, "ended_on": null, "started_on": 1789135056.7380433, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10976313", "build_id": 10976313, "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\": \"tmpo19hkzcw\", \"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--b6626f50-d6e9-4d6b-badc-1af13882c90a", "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:5688", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5688", "result_dir": "10976313", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10976313, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-11 13:57:36,763][ INFO][PID:3533357] Sending fedora-messaging bus message in build.start [2026-09-11 13:57:37,150][ INFO][PID:3533357] Sending fedora-messaging bus message in chroot.start [2026-09-11 13:57:37,345][ INFO][PID:3533357] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10976313 --detached [2026-09-11 13:57:37,806][ INFO][PID:3533357] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.227.233.47' (ED25519) to the list of known hosts. [2026-09-11 13:57:37,807][ INFO][PID:3533357] Downloading the builder-live.log file, attempt 1 [2026-09-11 13:57:37,808][ INFO][PID:3533357] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.227.233.47 copr-rpmbuild-log [2026-09-11 13:57:42,812][ INFO][PID:3533357] Periodic builder liveness probe: alive [2026-09-11 13:57:42,812][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:57:47,813][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:57:52,814][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:57:57,814][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:02,816][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:07,816][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:12,817][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:17,818][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:24,036][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:29,037][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:34,037][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:39,199][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:44,201][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:49,203][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:54,204][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:58:59,206][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:04,206][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:09,207][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:14,208][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:19,209][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:24,209][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:29,210][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:34,211][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:39,211][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:44,212][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:49,213][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:54,214][ INFO][PID:3533357] Checking for cancel request [2026-09-11 13:59:59,215][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:04,216][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:09,217][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:14,218][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:19,219][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:24,220][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:29,221][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:34,222][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:39,223][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:44,223][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:49,224][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:54,225][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:00:59,226][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:04,227][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:09,228][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:14,228][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:19,229][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:24,230][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:29,231][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:34,232][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:39,233][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:44,234][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:49,234][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:54,235][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:01:59,236][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:04,237][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:09,329][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:14,398][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:19,400][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:24,401][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:29,402][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:34,403][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:39,408][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:44,409][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:49,412][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:54,413][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:02:59,414][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:04,416][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:09,417][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:14,417][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:19,418][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:24,419][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:29,420][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:34,421][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:39,422][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:44,424][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:49,425][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:54,427][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:03:59,428][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:04,429][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:09,429][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:14,430][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:19,431][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:24,432][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:29,433][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:34,434][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:39,435][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:44,436][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:49,440][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:54,442][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:04:59,444][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:04,445][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:09,447][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:14,448][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:19,449][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:24,450][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:29,451][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:34,452][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:39,452][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:44,453][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:49,454][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:54,455][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:05:59,458][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:04,460][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:09,463][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:14,466][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:19,470][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:24,472][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:29,473][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:34,474][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:39,476][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:44,478][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:49,480][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:54,481][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:06:59,483][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:04,486][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:09,497][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:14,497][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:19,498][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:24,505][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:29,517][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:34,518][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:39,519][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:44,537][ INFO][PID:3533357] Periodic builder liveness probe: alive [2026-09-11 14:07:44,538][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:49,542][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:54,543][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:07:59,543][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:08:04,544][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:08:09,545][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:08:14,548][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:08:19,550][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:08:24,551][ INFO][PID:3533357] Checking for cancel request [2026-09-11 14:08:27,042][ INFO][PID:3533357] Downloading results from builder [2026-09-11 14:08:27,043][ INFO][PID:3533357] rsyncing of mockbuilder@3.227.233.47:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313 started [2026-09-11 14:08:27,048][ INFO][PID:3533357] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.227.233.47:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/build-10976313.rsync.log [2026-09-11 14:08:29,563][ INFO][PID:3533357] rsyncing finished. [2026-09-11 14:08:29,564][ INFO][PID:3533357] VM Release request [2026-09-11 14:08:29,612][ INFO][PID:3533357] Searching for 'success' file in resultdir [2026-09-11 14:08:29,613][ INFO][PID:3533357] Getting build details [2026-09-11 14:08:29,613][ INFO][PID:3533357] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313 [2026-09-11 14:08:29,614][ INFO][PID:3533357] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/Sunshine-0.0.5688-1.src.rpm [2026-09-11 14:08:29,614][ INFO][PID:3533357] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/Sunshine-0.0.5688-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5688-1'} [2026-09-11 14:08:29,614][ INFO][PID:3533357] Finished build: id=10976313 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688 chroot=srpm-builds [2026-09-11 14:08:29,614][ INFO][PID:3533357] Worker succeeded build, took 652.8767831325531 [2026-09-11 14:08:29,615][ INFO][PID:3533357] 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:5688", "submitter": null, "ended_on": 1789135709.6148264, "started_on": 1789135056.7380433, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10976313", "build_id": 10976313, "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\": \"tmpo19hkzcw\", \"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:5688/srpm-builds/10976313/Sunshine-0.0.5688-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--b6626f50-d6e9-4d6b-badc-1af13882c90a", "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.5688", "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:5688", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5688", "result_dir": "10976313", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5688-1", "id": 10976313, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-09-11 14:08:29,671][ INFO][PID:3533357] Sending fedora-messaging bus message in build.end [2026-09-11 14:08:29,692][ INFO][PID:3533357] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/builder-live.log by gzip [2026-09-11 14:08:29,693][ INFO][PID:3533357] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/builder-live.log' as PID 3702596 [2026-09-11 14:08:29,698][ INFO][PID:3533357] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/builder-live.log) [2026-09-11 14:08:29,698][ INFO][PID:3533357] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/backend.log by gzip [2026-09-11 14:08:29,699][ INFO][PID:3533357] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5688/srpm-builds/10976313/backend.log' as PID 3702598