[2026-05-15 13:35:40,833][ INFO][PID:2892047] Marking build as starting [2026-05-15 13:35:40,907][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:35:40,914][ INFO][PID:2892047] VM allocation process starts [2026-05-15 13:35:40,949][ INFO][PID:2892047] Trying to allocate VM: ResallocHost, ticket_id=2905989, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-15 13:35:45,953][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:35:50,958][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:35:55,964][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:00,976][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:05,978][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:09,072][ INFO][PID:2892047] Allocated host ResallocHost, ticket_id=2905989, hostname=2620:52:6:1161:dead:beef:cafe:c122, name=vmhost_x86_02_prod_08858496_20260515_132105, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-15 13:36:09,083][ INFO][PID:2892047] Allocating ssh connection to builder [2026-05-15 13:36:09,086][ INFO][PID:2892047] Checking that builder machine is OK [2026-05-15 13:36:09,693][ INFO][PID:2892047] Installed copr-rpmbuild version: 1.8 [2026-05-15 13:36:09,694][ INFO][PID:2892047] Running remote command: copr-builder-ready srpm-builds [2026-05-15 13:36:10,178][ INFO][PID:2892047] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-15 13:36:10,179][ INFO][PID:2892047] Filling build.info file with builder info [2026-05-15 13:36:10,180][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:10,185][ INFO][PID:2892047] 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:5124", "submitter": null, "ended_on": null, "started_on": 1778852170.185694, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10463348", "build_id": 10463348, "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\": \"tmpdahlwjpn\", \"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--2bf9a8a8-f972-4f87-895a-e85516587fa2", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5124", "result_dir": "10463348", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10463348, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-15 13:36:10,272][ INFO][PID:2892047] Sending fedora-messaging bus message in build.start [2026-05-15 13:36:12,636][ INFO][PID:2892047] Sending fedora-messaging bus message in chroot.start [2026-05-15 13:36:12,719][ INFO][PID:2892047] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10463348 --detached [2026-05-15 13:36:13,487][ INFO][PID:2892047] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c122' (ED25519) to the list of known hosts. [2026-05-15 13:36:13,491][ INFO][PID:2892047] Downloading the builder-live.log file, attempt 1 [2026-05-15 13:36:13,499][ INFO][PID:2892047] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c122 copr-rpmbuild-log [2026-05-15 13:36:18,523][ INFO][PID:2892047] Periodic builder liveness probe: alive [2026-05-15 13:36:18,634][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:23,654][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:28,668][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:33,671][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:38,680][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:43,682][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:48,688][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:53,690][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:36:58,691][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:03,733][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:08,739][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:13,742][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:18,744][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:23,751][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:28,753][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:33,755][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:38,758][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:43,762][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:48,767][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:53,769][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:37:58,772][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:03,774][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:08,776][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:13,779][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:18,781][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:23,878][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:28,880][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:33,882][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:38,885][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:43,912][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:48,914][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:53,916][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:38:58,918][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:03,919][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:08,921][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:13,923][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:18,925][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:23,926][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:28,928][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:33,929][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:38,931][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:43,932][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:48,933][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:53,935][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:39:58,936][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:03,937][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:08,939][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:13,940][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:18,941][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:23,945][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:28,953][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:33,955][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:38,994][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:43,996][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:49,020][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:54,021][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:40:59,023][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:04,024][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:09,031][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:14,033][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:19,088][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:24,090][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:29,092][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:34,094][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:39,095][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:44,097][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:49,099][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:54,101][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:41:59,103][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:04,104][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:09,106][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:14,107][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:19,112][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:24,114][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:29,214][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:34,216][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:39,218][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:44,220][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:49,222][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:54,225][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:42:59,226][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:04,228][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:09,229][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:14,230][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:19,232][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:24,233][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:29,234][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:34,236][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:39,238][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:44,239][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:49,240][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:54,242][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:43:59,244][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:04,246][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:09,248][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:14,249][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:19,250][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:24,252][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:29,253][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:34,255][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:39,256][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:44,257][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:49,278][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:54,279][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:44:59,280][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:45:04,282][ INFO][PID:2892047] Checking for cancel request [2026-05-15 13:45:08,112][ INFO][PID:2892047] Downloading results from builder [2026-05-15 13:45:08,282][ INFO][PID:2892047] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c122]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348 started [2026-05-15 13:45:08,729][ INFO][PID:2892047] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@[2620:52:6:1161:dead:beef:cafe:c122]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/build-10463348.rsync.log [2026-05-15 13:45:16,487][ INFO][PID:2892047] rsyncing finished. [2026-05-15 13:45:16,490][ INFO][PID:2892047] VM Release request [2026-05-15 13:45:17,458][ INFO][PID:2892047] Searching for 'success' file in resultdir [2026-05-15 13:45:17,538][ INFO][PID:2892047] Getting build details [2026-05-15 13:45:17,551][ INFO][PID:2892047] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348 [2026-05-15 13:45:17,646][ INFO][PID:2892047] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/Sunshine-0.0.5124-1.src.rpm [2026-05-15 13:45:17,651][ INFO][PID:2892047] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/Sunshine-0.0.5124-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5124-1'} [2026-05-15 13:45:17,670][ INFO][PID:2892047] Finished build: id=10463348 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124 chroot=srpm-builds [2026-05-15 13:45:17,839][ INFO][PID:2892047] Worker succeeded build, took 547.6538641452789 [2026-05-15 13:45:17,858][ INFO][PID:2892047] 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:5124", "submitter": null, "ended_on": 1778852717.8395581, "started_on": 1778852170.185694, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10463348", "build_id": 10463348, "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\": \"tmpdahlwjpn\", \"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:5124/srpm-builds/10463348/Sunshine-0.0.5124-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--2bf9a8a8-f972-4f87-895a-e85516587fa2", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5124", "release": "1" }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "distributions_in_build": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-leap-15.6" ], "destdir": "/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5124", "result_dir": "10463348", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5124-1", "id": 10463348, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-15 13:45:19,322][ INFO][PID:2892047] Sending fedora-messaging bus message in build.end [2026-05-15 13:45:19,822][ INFO][PID:2892047] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/builder-live.log by gzip [2026-05-15 13:45:19,864][ INFO][PID:2892047] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/builder-live.log' as PID 2969137 [2026-05-15 13:45:19,915][ INFO][PID:2892047] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/builder-live.log) [2026-05-15 13:45:19,925][ INFO][PID:2892047] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/backend.log by gzip [2026-05-15 13:45:19,927][ INFO][PID:2892047] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5124/srpm-builds/10463348/backend.log' as PID 2969138