[2026-07-18 09:48:55,234][ INFO][PID:824672] Marking build as starting [2026-07-18 09:48:55,274][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:48:55,275][ INFO][PID:824672] VM allocation process starts [2026-07-18 09:48:55,284][ INFO][PID:824672] Trying to allocate VM: ResallocHost, ticket_id=3984905, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-18 09:49:00,286][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:01,313][ INFO][PID:824672] Allocated host ResallocHost, ticket_id=3984905, hostname=54.242.98.191, name=aws_x86_64_reserved_prod_13147554_20260718_091622, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-18 09:49:01,313][ INFO][PID:824672] Allocating ssh connection to builder [2026-07-18 09:49:01,314][ INFO][PID:824672] Checking that builder machine is OK [2026-07-18 09:49:01,615][ INFO][PID:824672] Installed copr-rpmbuild version: 1.8 [2026-07-18 09:49:01,616][ INFO][PID:824672] Running remote command: copr-builder-ready srpm-builds [2026-07-18 09:49:01,788][ INFO][PID:824672] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-18 09:49:01,789][ INFO][PID:824672] Filling build.info file with builder info [2026-07-18 09:49:01,791][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:01,792][ INFO][PID:824672] 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:5426", "submitter": null, "ended_on": null, "started_on": 1784368141.7922482, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10740479", "build_id": 10740479, "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\": \"tmp50n9xvtt\", \"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--815d1518-3665-4eba-9a1a-d3f9e5576e5a", "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:5426", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5426", "result_dir": "10740479", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10740479, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-18 09:49:01,829][ INFO][PID:824672] Sending fedora-messaging bus message in build.start [2026-07-18 09:49:02,305][ INFO][PID:824672] Sending fedora-messaging bus message in chroot.start [2026-07-18 09:49:02,333][ INFO][PID:824672] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10740479 --detached [2026-07-18 09:49:03,000][ INFO][PID:824672] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '54.242.98.191' (ED25519) to the list of known hosts. [2026-07-18 09:49:03,001][ INFO][PID:824672] Downloading the builder-live.log file, attempt 1 [2026-07-18 09:49:03,003][ INFO][PID:824672] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@54.242.98.191 copr-rpmbuild-log [2026-07-18 09:49:08,013][ INFO][PID:824672] Periodic builder liveness probe: alive [2026-07-18 09:49:08,014][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:13,015][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:18,017][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:23,018][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:28,019][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:33,021][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:38,022][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:43,023][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:48,024][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:53,026][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:49:58,027][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:03,029][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:08,030][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:13,032][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:18,033][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:23,034][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:28,036][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:33,037][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:38,038][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:43,040][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:48,041][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:53,042][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:50:58,044][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:03,045][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:08,046][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:13,047][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:18,048][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:23,050][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:28,051][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:33,052][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:38,053][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:43,055][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:48,056][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:53,057][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:51:58,059][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:03,063][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:08,065][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:13,066][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:18,068][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:23,072][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:28,073][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:33,075][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:38,076][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:43,077][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:48,079][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:53,080][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:52:58,081][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:03,083][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:08,084][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:13,085][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:18,087][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:23,088][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:28,089][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:33,091][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:38,092][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:43,093][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:48,094][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:53,096][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:53:58,097][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:03,098][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:08,099][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:13,101][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:18,103][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:23,104][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:28,105][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:33,107][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:38,108][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:43,109][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:48,112][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:53,113][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:54:58,114][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:03,116][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:08,125][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:13,126][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:18,128][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:23,129][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:28,130][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:33,132][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:38,133][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:43,135][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:48,136][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:53,137][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:55:58,139][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:03,142][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:08,143][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:13,144][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:18,146][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:23,147][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:28,149][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:33,150][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:38,152][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:43,153][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:48,154][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:53,157][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:56:58,158][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:03,160][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:08,161][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:13,162][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:18,163][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:23,165][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:28,166][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:33,168][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:38,169][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:43,170][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:48,172][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:53,173][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:57:58,175][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:58:03,176][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:58:08,177][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:58:13,179][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:58:18,180][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:58:23,182][ INFO][PID:824672] Checking for cancel request [2026-07-18 09:58:25,747][ INFO][PID:824672] Downloading results from builder [2026-07-18 09:58:25,748][ INFO][PID:824672] rsyncing of mockbuilder@54.242.98.191:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479 started [2026-07-18 09:58:25,749][ INFO][PID:824672] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@54.242.98.191:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/build-10740479.rsync.log [2026-07-18 09:58:30,884][ INFO][PID:824672] rsyncing finished. [2026-07-18 09:58:30,885][ INFO][PID:824672] VM Release request [2026-07-18 09:58:30,894][ INFO][PID:824672] Searching for 'success' file in resultdir [2026-07-18 09:58:30,895][ INFO][PID:824672] Getting build details [2026-07-18 09:58:30,895][ INFO][PID:824672] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479 [2026-07-18 09:58:30,896][ INFO][PID:824672] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/Sunshine-0.0.5426-1.src.rpm [2026-07-18 09:58:30,897][ INFO][PID:824672] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/Sunshine-0.0.5426-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5426-1'} [2026-07-18 09:58:30,897][ INFO][PID:824672] Finished build: id=10740479 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426 chroot=srpm-builds [2026-07-18 09:58:30,899][ INFO][PID:824672] Worker succeeded build, took 569.1073441505432 [2026-07-18 09:58:30,900][ INFO][PID:824672] 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:5426", "submitter": null, "ended_on": 1784368710.8995924, "started_on": 1784368141.7922482, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10740479", "build_id": 10740479, "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\": \"tmp50n9xvtt\", \"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:5426/srpm-builds/10740479/Sunshine-0.0.5426-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--815d1518-3665-4eba-9a1a-d3f9e5576e5a", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5426", "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:5426", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5426", "result_dir": "10740479", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5426-1", "id": 10740479, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-18 09:58:30,952][ INFO][PID:824672] Sending fedora-messaging bus message in build.end [2026-07-18 09:58:30,979][ INFO][PID:824672] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/builder-live.log by gzip [2026-07-18 09:58:30,981][ INFO][PID:824672] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/builder-live.log' as PID 869140 [2026-07-18 09:58:31,004][ INFO][PID:824672] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/builder-live.log) [2026-07-18 09:58:31,004][ INFO][PID:824672] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/backend.log by gzip [2026-07-18 09:58:31,006][ INFO][PID:824672] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5426/srpm-builds/10740479/backend.log' as PID 869141