[2026-07-03 18:38:19,937][ INFO][PID:2345938] Marking build as starting [2026-07-03 18:38:19,980][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:38:19,982][ INFO][PID:2345938] VM allocation process starts [2026-07-03 18:38:19,992][ INFO][PID:2345938] Trying to allocate VM: ResallocHost, ticket_id=3742636, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-03 18:38:23,006][ INFO][PID:2345938] Allocated host ResallocHost, ticket_id=3742636, hostname=98.93.123.156, name=aws_x86_64_reserved_prod_12881556_20260703_182850, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-03 18:38:23,007][ INFO][PID:2345938] Allocating ssh connection to builder [2026-07-03 18:38:23,007][ INFO][PID:2345938] Checking that builder machine is OK [2026-07-03 18:38:23,326][ INFO][PID:2345938] Installed copr-rpmbuild version: 1.8 [2026-07-03 18:38:23,327][ INFO][PID:2345938] Running remote command: copr-builder-ready srpm-builds [2026-07-03 18:38:23,496][ INFO][PID:2345938] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-03 18:38:23,496][ INFO][PID:2345938] Filling build.info file with builder info [2026-07-03 18:38:23,497][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:38:23,498][ INFO][PID:2345938] 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:5369", "submitter": null, "ended_on": null, "started_on": 1783103903.4984913, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10679487", "build_id": 10679487, "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\": \"tmpcuko6sjq\", \"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--c9d18082-4c2a-4781-86ba-87f408e841a0", "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:5369", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5369", "result_dir": "10679487", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10679487, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-03 18:38:23,536][ INFO][PID:2345938] Sending fedora-messaging bus message in build.start [2026-07-03 18:38:23,996][ INFO][PID:2345938] Sending fedora-messaging bus message in chroot.start [2026-07-03 18:38:24,030][ INFO][PID:2345938] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10679487 --detached [2026-07-03 18:38:24,505][ INFO][PID:2345938] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '98.93.123.156' (ED25519) to the list of known hosts. [2026-07-03 18:38:24,507][ INFO][PID:2345938] Downloading the builder-live.log file, attempt 1 [2026-07-03 18:38:24,509][ INFO][PID:2345938] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@98.93.123.156 copr-rpmbuild-log [2026-07-03 18:38:29,513][ INFO][PID:2345938] Periodic builder liveness probe: alive [2026-07-03 18:38:29,514][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:38:34,515][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:38:39,516][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:38:44,519][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:38:49,520][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:38:54,521][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:38:59,523][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:04,524][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:09,525][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:14,527][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:19,528][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:24,529][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:29,530][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:34,533][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:39,534][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:44,536][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:49,537][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:54,538][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:39:59,539][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:04,541][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:09,542][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:14,543][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:19,544][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:24,545][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:29,547][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:34,548][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:39,549][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:44,550][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:49,552][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:54,553][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:40:59,554][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:04,555][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:09,557][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:14,558][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:19,559][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:24,560][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:29,561][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:34,563][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:39,564][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:44,565][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:49,703][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:54,704][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:41:59,706][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:04,707][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:09,708][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:14,710][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:19,711][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:24,712][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:29,713][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:34,715][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:39,716][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:44,717][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:49,719][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:54,720][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:42:59,722][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:04,723][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:09,725][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:14,726][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:19,728][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:24,729][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:29,730][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:34,732][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:39,733][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:44,734][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:49,735][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:54,737][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:43:59,738][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:04,739][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:09,740][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:14,741][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:19,743][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:24,744][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:29,745][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:34,746][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:39,926][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:44,928][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:49,932][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:54,933][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:44:59,935][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:04,937][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:09,939][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:14,942][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:19,945][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:24,946][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:29,948][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:34,950][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:39,951][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:44,954][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:49,956][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:45:55,087][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:00,088][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:05,090][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:10,091][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:15,092][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:20,093][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:25,095][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:30,228][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:35,229][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:40,230][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:45,262][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:50,687][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:46:55,694][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:00,697][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:05,698][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:10,700][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:15,701][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:20,703][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:25,705][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:30,706][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:35,708][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:40,710][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:45,711][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:50,800][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:47:55,802][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:00,803][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:05,804][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:10,806][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:15,807][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:20,808][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:25,809][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:30,817][ INFO][PID:2345938] Periodic builder liveness probe: alive [2026-07-03 18:48:30,818][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:35,819][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:40,921][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:45,923][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:50,925][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:48:55,927][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:49:00,929][ INFO][PID:2345938] Checking for cancel request [2026-07-03 18:49:03,277][ INFO][PID:2345938] Downloading results from builder [2026-07-03 18:49:03,294][ INFO][PID:2345938] rsyncing of mockbuilder@98.93.123.156:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487 started [2026-07-03 18:49:03,324][ INFO][PID:2345938] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@98.93.123.156:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/build-10679487.rsync.log [2026-07-03 18:49:08,983][ INFO][PID:2345938] rsyncing finished. [2026-07-03 18:49:08,992][ INFO][PID:2345938] VM Release request [2026-07-03 18:49:09,042][ INFO][PID:2345938] Searching for 'success' file in resultdir [2026-07-03 18:49:09,091][ INFO][PID:2345938] Getting build details [2026-07-03 18:49:09,097][ INFO][PID:2345938] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487 [2026-07-03 18:49:09,159][ INFO][PID:2345938] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/Sunshine-0.0.5369-1.src.rpm [2026-07-03 18:49:09,163][ INFO][PID:2345938] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/Sunshine-0.0.5369-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5369-1'} [2026-07-03 18:49:09,172][ INFO][PID:2345938] Finished build: id=10679487 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369 chroot=srpm-builds [2026-07-03 18:49:09,281][ INFO][PID:2345938] Worker succeeded build, took 645.781900882721 [2026-07-03 18:49:09,298][ INFO][PID:2345938] 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:5369", "submitter": null, "ended_on": 1783104549.2803922, "started_on": 1783103903.4984913, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10679487", "build_id": 10679487, "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\": \"tmpcuko6sjq\", \"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:5369/srpm-builds/10679487/Sunshine-0.0.5369-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--c9d18082-4c2a-4781-86ba-87f408e841a0", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5369", "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:5369", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5369", "result_dir": "10679487", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5369-1", "id": 10679487, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-03 18:49:10,443][ INFO][PID:2345938] Sending fedora-messaging bus message in build.end [2026-07-03 18:49:10,958][ INFO][PID:2345938] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/builder-live.log by gzip [2026-07-03 18:49:10,992][ INFO][PID:2345938] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/builder-live.log' as PID 2379373 [2026-07-03 18:49:11,051][ INFO][PID:2345938] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/builder-live.log) [2026-07-03 18:49:11,061][ INFO][PID:2345938] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/backend.log by gzip [2026-07-03 18:49:11,074][ INFO][PID:2345938] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5369/srpm-builds/10679487/backend.log' as PID 2379379