[2026-07-09 12:58:27,136][ INFO][PID:2406641] Marking build as starting [2026-07-09 12:58:27,174][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:58:27,176][ INFO][PID:2406641] VM allocation process starts [2026-07-09 12:58:27,207][ INFO][PID:2406641] Trying to allocate VM: ResallocHost, ticket_id=3831594, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-09 12:58:30,220][ INFO][PID:2406641] Allocated host ResallocHost, ticket_id=3831594, hostname=98.80.218.130, name=aws_x86_64_reserved_prod_12991392_20260709_125455, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-09 12:58:30,221][ INFO][PID:2406641] Allocating ssh connection to builder [2026-07-09 12:58:30,222][ INFO][PID:2406641] Checking that builder machine is OK [2026-07-09 12:58:30,557][ INFO][PID:2406641] Installed copr-rpmbuild version: 1.8 [2026-07-09 12:58:30,558][ INFO][PID:2406641] Running remote command: copr-builder-ready srpm-builds [2026-07-09 12:58:30,756][ INFO][PID:2406641] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-09 12:58:30,757][ INFO][PID:2406641] Filling build.info file with builder info [2026-07-09 12:58:30,758][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:58:30,759][ INFO][PID:2406641] 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:5286", "submitter": null, "ended_on": null, "started_on": 1783601910.7595172, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10702353", "build_id": 10702353, "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\": \"tmph0e9xv9a\", \"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--b54862fe-0d2e-474c-bded-0695dc0d6d7a", "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:5286", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5286", "result_dir": "10702353", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10702353, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-09 12:58:30,806][ INFO][PID:2406641] Sending fedora-messaging bus message in build.start [2026-07-09 12:58:31,284][ INFO][PID:2406641] Sending fedora-messaging bus message in chroot.start [2026-07-09 12:58:31,311][ INFO][PID:2406641] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10702353 --detached [2026-07-09 12:58:31,832][ INFO][PID:2406641] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.80.218.130' (ED25519) to the list of known hosts. [2026-07-09 12:58:31,833][ INFO][PID:2406641] Downloading the builder-live.log file, attempt 1 [2026-07-09 12:58:31,835][ INFO][PID:2406641] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.80.218.130 copr-rpmbuild-log [2026-07-09 12:58:36,839][ INFO][PID:2406641] Periodic builder liveness probe: alive [2026-07-09 12:58:36,840][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:58:41,841][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:58:46,842][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:58:51,844][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:58:56,859][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:01,860][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:06,862][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:11,870][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:16,872][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:21,874][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:26,876][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:31,878][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:36,879][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:41,881][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:46,882][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:51,885][ INFO][PID:2406641] Checking for cancel request [2026-07-09 12:59:56,886][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:01,888][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:06,889][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:11,891][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:16,892][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:21,893][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:26,895][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:31,896][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:36,898][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:41,899][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:46,900][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:51,901][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:00:56,902][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:01,904][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:06,906][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:11,907][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:16,927][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:21,928][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:26,930][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:31,931][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:36,932][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:41,950][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:46,952][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:51,953][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:01:56,958][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:01,963][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:06,972][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:11,974][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:16,976][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:21,979][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:26,980][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:32,000][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:37,001][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:42,003][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:47,005][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:52,007][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:02:57,008][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:02,010][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:07,012][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:12,017][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:17,018][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:22,020][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:27,021][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:32,023][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:37,024][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:42,029][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:47,030][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:52,031][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:03:57,033][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:02,034][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:07,035][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:12,037][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:17,038][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:22,044][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:27,046][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:32,048][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:37,052][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:42,057][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:47,059][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:52,060][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:04:57,062][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:02,063][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:07,064][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:12,066][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:17,067][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:22,068][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:27,071][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:32,073][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:37,074][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:42,076][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:47,078][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:52,079][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:05:57,081][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:02,097][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:07,124][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:12,126][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:17,127][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:22,137][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:27,139][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:32,142][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:37,144][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:42,145][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:47,147][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:52,149][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:06:57,152][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:02,159][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:07,161][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:12,162][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:17,164][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:22,166][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:27,170][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:32,173][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:37,174][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:42,176][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:47,177][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:52,179][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:07:57,182][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:08:02,184][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:08:07,185][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:08:12,189][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:08:17,194][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:08:22,196][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:08:27,198][ INFO][PID:2406641] Checking for cancel request [2026-07-09 13:08:30,582][ INFO][PID:2406641] Downloading results from builder [2026-07-09 13:08:30,623][ INFO][PID:2406641] rsyncing of mockbuilder@98.80.218.130:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353 started [2026-07-09 13:08:30,725][ INFO][PID:2406641] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.80.218.130:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/build-10702353.rsync.log [2026-07-09 13:08:42,351][ INFO][PID:2406641] rsyncing finished. [2026-07-09 13:08:42,357][ INFO][PID:2406641] VM Release request [2026-07-09 13:08:42,616][ INFO][PID:2406641] Searching for 'success' file in resultdir [2026-07-09 13:08:42,681][ INFO][PID:2406641] Getting build details [2026-07-09 13:08:42,682][ INFO][PID:2406641] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353 [2026-07-09 13:08:42,758][ INFO][PID:2406641] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/Sunshine-0.0.5286-1.src.rpm [2026-07-09 13:08:42,764][ INFO][PID:2406641] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/Sunshine-0.0.5286-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5286-1'} [2026-07-09 13:08:42,783][ INFO][PID:2406641] Finished build: id=10702353 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286 chroot=srpm-builds [2026-07-09 13:08:42,892][ INFO][PID:2406641] Worker succeeded build, took 612.1321797370911 [2026-07-09 13:08:42,910][ INFO][PID:2406641] 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:5286", "submitter": null, "ended_on": 1783602522.891697, "started_on": 1783601910.7595172, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10702353", "build_id": 10702353, "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\": \"tmph0e9xv9a\", \"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:5286/srpm-builds/10702353/Sunshine-0.0.5286-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--b54862fe-0d2e-474c-bded-0695dc0d6d7a", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5286", "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:5286", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5286", "result_dir": "10702353", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5286-1", "id": 10702353, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-09 13:08:43,977][ INFO][PID:2406641] Sending fedora-messaging bus message in build.end [2026-07-09 13:08:44,564][ INFO][PID:2406641] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/builder-live.log by gzip [2026-07-09 13:08:44,604][ INFO][PID:2406641] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/builder-live.log' as PID 2476713 [2026-07-09 13:08:44,643][ INFO][PID:2406641] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/builder-live.log) [2026-07-09 13:08:44,653][ INFO][PID:2406641] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/backend.log by gzip [2026-07-09 13:08:44,661][ INFO][PID:2406641] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5286/srpm-builds/10702353/backend.log' as PID 2476725