[2026-07-15 13:57:44,171][ INFO][PID:3309082] Marking build as starting [2026-07-15 13:57:44,213][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:57:44,214][ INFO][PID:3309082] VM allocation process starts [2026-07-15 13:57:44,238][ INFO][PID:3309082] Trying to allocate VM: ResallocHost, ticket_id=3913613, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 13:57:47,286][ INFO][PID:3309082] Allocated host ResallocHost, ticket_id=3913613, hostname=54.89.16.209, name=aws_x86_64_reserved_prod_13093710_20260715_135504, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-15 13:57:47,287][ INFO][PID:3309082] Allocating ssh connection to builder [2026-07-15 13:57:47,288][ INFO][PID:3309082] Checking that builder machine is OK [2026-07-15 13:57:47,611][ INFO][PID:3309082] Installed copr-rpmbuild version: 1.8 [2026-07-15 13:57:47,612][ INFO][PID:3309082] Running remote command: copr-builder-ready srpm-builds [2026-07-15 13:57:47,835][ INFO][PID:3309082] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-15 13:57:47,836][ INFO][PID:3309082] Filling build.info file with builder info [2026-07-15 13:57:47,837][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:57:47,838][ INFO][PID:3309082] 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": 1784123867.8382242, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10721319", "build_id": 10721319, "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\": \"tmpg22k9z4d\", \"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--3bfbcdfc-c2cf-440e-be74-6a4979c0d303", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10721319", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10721319, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 13:57:47,887][ INFO][PID:3309082] Sending fedora-messaging bus message in build.start [2026-07-15 13:57:48,353][ INFO][PID:3309082] Sending fedora-messaging bus message in chroot.start [2026-07-15 13:57:48,379][ INFO][PID:3309082] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10721319 --detached [2026-07-15 13:57:49,063][ INFO][PID:3309082] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.89.16.209' (ED25519) to the list of known hosts. [2026-07-15 13:57:49,064][ INFO][PID:3309082] Downloading the builder-live.log file, attempt 1 [2026-07-15 13:57:49,264][ INFO][PID:3309082] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.89.16.209 copr-rpmbuild-log [2026-07-15 13:57:54,074][ INFO][PID:3309082] Periodic builder liveness probe: alive [2026-07-15 13:57:54,076][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:57:59,078][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:04,079][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:09,081][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:14,082][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:19,084][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:24,085][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:29,090][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:34,094][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:39,095][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:44,097][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:49,098][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:54,100][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:58:59,101][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:04,102][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:09,104][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:14,105][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:19,106][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:24,108][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:29,109][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:34,111][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:39,112][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:44,115][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:49,117][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:54,118][ INFO][PID:3309082] Checking for cancel request [2026-07-15 13:59:59,119][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:04,121][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:09,122][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:14,124][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:19,125][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:24,127][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:29,128][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:34,130][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:39,131][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:44,133][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:49,135][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:54,136][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:00:59,137][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:04,139][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:09,140][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:14,146][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:19,148][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:24,150][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:29,151][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:34,152][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:39,154][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:44,156][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:49,157][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:54,161][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:01:59,163][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:04,164][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:09,166][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:14,167][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:19,169][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:24,170][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:29,172][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:34,174][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:39,175][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:44,178][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:49,180][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:54,186][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:02:59,187][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:04,189][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:09,190][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:14,192][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:19,194][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:24,195][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:29,196][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:34,198][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:39,199][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:44,201][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:49,202][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:54,203][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:03:59,204][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:04,206][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:09,207][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:14,209][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:19,210][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:24,226][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:29,228][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:34,229][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:39,231][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:44,264][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:49,265][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:54,268][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:04:59,270][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:04,272][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:09,274][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:14,297][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:19,321][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:24,328][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:29,335][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:34,348][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:39,363][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:44,381][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:49,393][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:54,395][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:05:59,419][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:04,426][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:09,438][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:14,485][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:19,551][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:24,582][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:29,599][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:34,619][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:39,639][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:44,660][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:49,661][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:54,679][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:06:59,710][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:04,712][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:09,718][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:14,741][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:19,744][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:24,757][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:29,767][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:34,768][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:39,786][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:44,788][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:49,847][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:07:59,419][ INFO][PID:3309082] Periodic builder liveness probe: alive [2026-07-15 14:07:59,838][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:08:04,850][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:08:09,851][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:08:14,852][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:08:19,854][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:08:24,859][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:08:29,865][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:08:34,872][ INFO][PID:3309082] Checking for cancel request [2026-07-15 14:08:37,625][ INFO][PID:3309082] Downloading results from builder [2026-07-15 14:08:37,888][ INFO][PID:3309082] rsyncing of mockbuilder@54.89.16.209:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319 started [2026-07-15 14:08:38,343][ INFO][PID:3309082] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.89.16.209:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/build-10721319.rsync.log [2026-07-15 14:08:51,807][ INFO][PID:3309082] rsyncing finished. [2026-07-15 14:08:51,815][ INFO][PID:3309082] VM Release request [2026-07-15 14:08:51,869][ INFO][PID:3309082] Searching for 'success' file in resultdir [2026-07-15 14:08:51,986][ INFO][PID:3309082] Getting build details [2026-07-15 14:08:51,996][ INFO][PID:3309082] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319 [2026-07-15 14:08:52,227][ INFO][PID:3309082] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/Sunshine-0.0.5368-1.src.rpm [2026-07-15 14:08:52,232][ INFO][PID:3309082] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-15 14:08:52,284][ INFO][PID:3309082] Finished build: id=10721319 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-15 14:08:52,566][ INFO][PID:3309082] Worker succeeded build, took 664.7262456417084 [2026-07-15 14:08:52,612][ INFO][PID:3309082] 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": 1784124532.5644698, "started_on": 1784123867.8382242, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10721319", "build_id": 10721319, "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\": \"tmpg22k9z4d\", \"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/10721319/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--3bfbcdfc-c2cf-440e-be74-6a4979c0d303", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "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", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10721319", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10721319, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-15 14:08:53,777][ INFO][PID:3309082] Sending fedora-messaging bus message in build.end [2026-07-15 14:08:54,251][ INFO][PID:3309082] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/builder-live.log by gzip [2026-07-15 14:08:54,274][ INFO][PID:3309082] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/builder-live.log' as PID 3381174 [2026-07-15 14:08:54,319][ INFO][PID:3309082] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/builder-live.log) [2026-07-15 14:08:54,323][ INFO][PID:3309082] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/backend.log by gzip [2026-07-15 14:08:54,325][ INFO][PID:3309082] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10721319/backend.log' as PID 3381192