[2026-06-11 02:02:11,090][ INFO][PID:1671007] Marking build as starting [2026-06-11 02:02:11,141][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:11,144][ INFO][PID:1671007] VM allocation process starts [2026-06-11 02:02:11,195][ INFO][PID:1671007] Trying to allocate VM: ResallocHost, ticket_id=3378215, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-11 02:02:14,286][ INFO][PID:1671007] Allocated host ResallocHost, ticket_id=3378215, hostname=3.234.139.242, name=aws_x86_64_reserved_prod_11837623_20260611_012848, requested_tags=['arch_x86_64', 'copr_builder'] [2026-06-11 02:02:14,287][ INFO][PID:1671007] Allocating ssh connection to builder [2026-06-11 02:02:14,288][ INFO][PID:1671007] Checking that builder machine is OK [2026-06-11 02:02:14,655][ INFO][PID:1671007] Installed copr-rpmbuild version: 1.8 [2026-06-11 02:02:14,669][ INFO][PID:1671007] Running remote command: copr-builder-ready srpm-builds [2026-06-11 02:02:14,892][ INFO][PID:1671007] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-06-11 02:02:14,893][ INFO][PID:1671007] Filling build.info file with builder info [2026-06-11 02:02:14,894][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:14,896][ INFO][PID:1671007] 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:5280", "submitter": null, "ended_on": null, "started_on": 1781143334.8958628, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10588050", "build_id": 10588050, "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\": \"tmp5se0sirl\", \"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--35192b65-d221-4a9a-a039-117271df6701", "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:5280", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5280", "result_dir": "10588050", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10588050, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-11 02:02:14,938][ INFO][PID:1671007] Sending fedora-messaging bus message in build.start [2026-06-11 02:02:15,479][ INFO][PID:1671007] Sending fedora-messaging bus message in chroot.start [2026-06-11 02:02:15,512][ INFO][PID:1671007] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10588050 --detached [2026-06-11 02:02:16,005][ INFO][PID:1671007] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.234.139.242' (ED25519) to the list of known hosts. [2026-06-11 02:02:16,006][ INFO][PID:1671007] Downloading the builder-live.log file, attempt 1 [2026-06-11 02:02:16,008][ INFO][PID:1671007] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.234.139.242 copr-rpmbuild-log [2026-06-11 02:02:21,012][ INFO][PID:1671007] Periodic builder liveness probe: alive [2026-06-11 02:02:21,013][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:26,014][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:31,016][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:36,018][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:41,019][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:46,020][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:51,022][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:02:56,023][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:01,024][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:06,026][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:11,028][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:16,030][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:21,031][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:26,033][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:31,034][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:36,035][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:41,036][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:46,038][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:51,039][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:03:56,040][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:01,042][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:06,043][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:11,044][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:16,046][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:21,047][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:26,048][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:31,049][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:36,050][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:41,052][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:46,053][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:51,054][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:04:56,055][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:01,057][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:06,059][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:11,060][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:16,061][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:21,062][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:26,064][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:31,065][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:36,066][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:41,067][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:46,069][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:51,070][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:05:56,071][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:01,072][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:06,073][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:11,075][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:16,076][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:21,077][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:26,079][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:31,080][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:36,081][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:41,082][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:46,083][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:51,085][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:06:56,086][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:01,087][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:06,088][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:11,090][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:16,091][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:21,092][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:26,157][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:31,158][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:36,159][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:41,160][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:46,161][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:51,162][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:07:56,164][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:01,165][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:06,166][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:11,503][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:16,504][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:21,507][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:26,508][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:31,510][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:36,529][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:41,533][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:46,534][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:51,867][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:08:56,869][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:01,882][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:06,884][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:11,886][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:16,888][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:21,985][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:26,990][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:31,991][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:37,286][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:42,290][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:47,292][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:52,295][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:09:57,296][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:02,297][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:07,298][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:12,299][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:17,301][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:22,302][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:27,307][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:32,310][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:37,312][ INFO][PID:1671007] Checking for cancel request [2026-06-11 02:10:40,407][ INFO][PID:1671007] Downloading results from builder [2026-06-11 02:10:40,408][ INFO][PID:1671007] rsyncing of mockbuilder@3.234.139.242:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050 started [2026-06-11 02:10:40,409][ INFO][PID:1671007] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.234.139.242:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050/build-10588050.rsync.log [2026-06-11 02:10:50,225][ INFO][PID:1671007] rsyncing finished. [2026-06-11 02:10:50,226][ INFO][PID:1671007] VM Release request [2026-06-11 02:10:50,242][ INFO][PID:1671007] Searching for 'success' file in resultdir [2026-06-11 02:10:50,245][ INFO][PID:1671007] Getting build details [2026-06-11 02:10:50,247][ INFO][PID:1671007] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050 [2026-06-11 02:10:50,249][ INFO][PID:1671007] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050/Sunshine-0.0.5280-1.src.rpm [2026-06-11 02:10:50,250][ INFO][PID:1671007] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050/Sunshine-0.0.5280-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5280-1'} [2026-06-11 02:10:50,251][ INFO][PID:1671007] Finished build: id=10588050 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280 chroot=srpm-builds [2026-06-11 02:10:50,255][ INFO][PID:1671007] Worker succeeded build, took 515.3597183227539 [2026-06-11 02:10:50,257][ INFO][PID:1671007] 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:5280", "submitter": null, "ended_on": 1781143850.2555811, "started_on": 1781143334.8958628, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10588050", "build_id": 10588050, "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\": \"tmp5se0sirl\", \"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:5280/srpm-builds/10588050/Sunshine-0.0.5280-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--35192b65-d221-4a9a-a039-117271df6701", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5280", "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:5280", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5280", "result_dir": "10588050", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5280-1", "id": 10588050, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-06-11 02:10:50,321][ INFO][PID:1671007] Sending fedora-messaging bus message in build.end [2026-06-11 02:10:50,377][ INFO][PID:1671007] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050/builder-live.log by gzip [2026-06-11 02:10:50,379][ INFO][PID:1671007] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050/builder-live.log' as PID 1708995 [2026-06-11 02:10:50,389][ INFO][PID:1671007] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050/builder-live.log) [2026-06-11 02:10:50,390][ INFO][PID:1671007] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5280/srpm-builds/10588050/backend.log by gzip