[2026-07-08 15:28:33,989][ INFO][PID:3344213] Marking build as starting [2026-07-08 15:28:34,036][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:28:34,039][ INFO][PID:3344213] VM allocation process starts [2026-07-08 15:28:34,053][ INFO][PID:3344213] Trying to allocate VM: ResallocHost, ticket_id=3814947, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 15:28:37,068][ INFO][PID:3344213] Allocated host ResallocHost, ticket_id=3814947, hostname=44.220.41.76, name=aws_x86_64_reserved_prod_12968465_20260708_152513, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 15:28:37,069][ INFO][PID:3344213] Allocating ssh connection to builder [2026-07-08 15:28:37,070][ INFO][PID:3344213] Checking that builder machine is OK [2026-07-08 15:28:37,383][ INFO][PID:3344213] Installed copr-rpmbuild version: 1.8 [2026-07-08 15:28:37,384][ INFO][PID:3344213] Running remote command: copr-builder-ready srpm-builds [2026-07-08 15:28:37,571][ INFO][PID:3344213] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-08 15:28:37,572][ INFO][PID:3344213] Filling build.info file with builder info [2026-07-08 15:28:37,573][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:28:37,574][ INFO][PID:3344213] 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": 1783524517.5742762, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10698660", "build_id": 10698660, "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\": \"tmpa4snhp1e\", \"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--60d56fcc-6011-420f-a23b-790c00616e46", "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": "10698660", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10698660, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 15:28:37,619][ INFO][PID:3344213] Sending fedora-messaging bus message in build.start [2026-07-08 15:28:38,159][ INFO][PID:3344213] Sending fedora-messaging bus message in chroot.start [2026-07-08 15:28:38,188][ INFO][PID:3344213] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10698660 --detached [2026-07-08 15:28:38,863][ INFO][PID:3344213] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '44.220.41.76' (ED25519) to the list of known hosts. [2026-07-08 15:28:38,864][ INFO][PID:3344213] Downloading the builder-live.log file, attempt 1 [2026-07-08 15:28:38,866][ INFO][PID:3344213] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@44.220.41.76 copr-rpmbuild-log [2026-07-08 15:28:43,870][ INFO][PID:3344213] Periodic builder liveness probe: alive [2026-07-08 15:28:43,875][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:28:48,876][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:28:53,878][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:28:58,879][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:03,881][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:08,885][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:13,894][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:18,907][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:23,908][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:28,920][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:33,922][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:38,924][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:43,926][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:48,927][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:53,929][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:29:58,932][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:03,940][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:08,942][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:13,945][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:18,946][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:23,948][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:28,950][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:33,951][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:38,959][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:43,971][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:48,978][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:53,981][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:30:58,983][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:03,994][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:08,996][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:13,998][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:18,999][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:24,016][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:29,051][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:34,071][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:39,073][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:44,075][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:49,077][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:54,083][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:31:59,089][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:04,094][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:09,095][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:14,097][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:19,099][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:24,104][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:29,106][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:34,107][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:39,109][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:44,124][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:49,129][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:54,132][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:32:59,135][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:04,138][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:09,140][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:14,141][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:19,143][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:24,151][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:29,153][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:34,158][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:39,159][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:44,169][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:49,179][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:54,180][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:33:59,182][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:04,190][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:09,194][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:14,196][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:19,198][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:24,203][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:29,208][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:34,211][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:39,215][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:44,219][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:49,221][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:54,223][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:34:59,224][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:04,226][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:09,235][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:14,236][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:19,430][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:25,111][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:30,122][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:35,157][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:40,391][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:45,485][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:50,704][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:35:55,706][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:00,710][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:05,715][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:10,726][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:15,727][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:20,731][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:25,811][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:30,822][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:35,839][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:40,893][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:45,911][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:51,072][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:36:56,214][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:01,444][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:06,673][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:11,998][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:17,032][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:22,115][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:27,149][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:32,433][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:37,529][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:42,545][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:47,550][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:52,693][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:37:57,696][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:02,699][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:07,701][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:12,704][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:17,713][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:22,869][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:28,073][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:33,145][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:38,176][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:43,213][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:48,477][ INFO][PID:3344213] Periodic builder liveness probe: alive [2026-07-08 15:38:48,504][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:53,511][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:38:58,518][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:39:03,520][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:39:08,522][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:39:13,523][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:39:18,525][ INFO][PID:3344213] Checking for cancel request [2026-07-08 15:39:18,533][ INFO][PID:3344213] Calling cancel callback, and waiting for thread.join() [2026-07-08 15:39:18,563][ INFO][PID:3344213] Canceling the build on the remote machine [2026-07-08 15:39:22,019][ INFO][PID:3344213] Cancel request succeeded out: success err: Warning: Permanently added '44.220.41.76' (ED25519) to the list of known hosts. [2026-07-08 15:39:22,045][ ERROR][PID:3344213] Build was canceled [2026-07-08 15:39:22,309][ INFO][PID:3344213] VM Release request [2026-07-08 15:39:22,431][WARNING][PID:3344213] Switching not-finished job state to 'failed' [2026-07-08 15:39:22,446][ INFO][PID:3344213] Worker failed build, took 644.8429086208344 [2026-07-08 15:39:22,489][ INFO][PID:3344213] 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": 1783525162.4171848, "started_on": 1783524517.5742762, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10698660", "build_id": 10698660, "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\": \"tmpa4snhp1e\", \"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--60d56fcc-6011-420f-a23b-790c00616e46", "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": "10698660", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10698660, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 15:39:22,972][ INFO][PID:3344213] Sending fedora-messaging bus message in build.end [2026-07-08 15:39:23,411][ INFO][PID:3344213] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698660/builder-live.log by gzip [2026-07-08 15:39:23,433][ INFO][PID:3344213] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698660/builder-live.log' as PID 3417733 [2026-07-08 15:39:23,555][ INFO][PID:3344213] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698660/builder-live.log) [2026-07-08 15:39:23,565][ INFO][PID:3344213] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698660/backend.log by gzip [2026-07-08 15:39:23,568][ INFO][PID:3344213] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10698660/backend.log' as PID 3417748