[2026-07-08 18:43:15,163][ INFO][PID:371830] Marking build as starting [2026-07-08 18:43:15,202][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:15,203][ INFO][PID:371830] VM allocation process starts [2026-07-08 18:43:15,227][ INFO][PID:371830] Trying to allocate VM: ResallocHost, ticket_id=3817601, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 18:43:18,244][ INFO][PID:371830] Allocated host ResallocHost, ticket_id=3817601, hostname=3.230.127.151, name=aws_x86_64_reserved_prod_12974211_20260708_184159, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-08 18:43:18,245][ INFO][PID:371830] Allocating ssh connection to builder [2026-07-08 18:43:18,246][ INFO][PID:371830] Checking that builder machine is OK [2026-07-08 18:43:18,553][ INFO][PID:371830] Installed copr-rpmbuild version: 1.8 [2026-07-08 18:43:18,554][ INFO][PID:371830] Running remote command: copr-builder-ready srpm-builds [2026-07-08 18:43:18,745][ INFO][PID:371830] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-08 18:43:18,746][ INFO][PID:371830] Filling build.info file with builder info [2026-07-08 18:43:18,748][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:18,751][ INFO][PID:371830] 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:5392", "submitter": null, "ended_on": null, "started_on": 1783536198.751719, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10699089", "build_id": 10699089, "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\": \"tmpx2ykd9cs\", \"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--5364ffb0-051f-4e4c-80fc-71092cc82be7", "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:5392", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5392", "result_dir": "10699089", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10699089, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 18:43:18,818][ INFO][PID:371830] Sending fedora-messaging bus message in build.start [2026-07-08 18:43:19,437][ INFO][PID:371830] Sending fedora-messaging bus message in chroot.start [2026-07-08 18:43:19,468][ INFO][PID:371830] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10699089 --detached [2026-07-08 18:43:19,936][ INFO][PID:371830] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.230.127.151' (ED25519) to the list of known hosts. [2026-07-08 18:43:19,937][ INFO][PID:371830] Downloading the builder-live.log file, attempt 1 [2026-07-08 18:43:19,939][ INFO][PID:371830] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.230.127.151 copr-rpmbuild-log [2026-07-08 18:43:24,946][ INFO][PID:371830] Periodic builder liveness probe: alive [2026-07-08 18:43:24,947][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:29,948][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:34,950][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:39,951][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:44,952][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:49,953][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:54,959][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:43:59,962][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:04,964][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:09,966][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:14,967][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:19,969][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:24,970][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:29,972][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:34,973][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:39,974][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:44,976][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:49,978][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:54,979][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:44:59,980][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:04,982][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:09,984][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:14,985][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:19,986][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:24,988][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:29,989][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:34,990][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:39,992][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:44,993][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:49,995][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:54,996][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:45:59,998][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:04,999][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:10,000][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:15,002][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:20,003][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:25,005][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:30,007][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:35,008][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:40,009][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:45,010][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:50,012][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:46:55,013][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:00,015][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:05,017][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:10,018][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:15,020][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:20,021][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:25,023][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:30,025][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:35,026][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:40,027][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:45,029][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:50,030][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:47:55,033][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:00,036][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:05,040][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:10,042][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:15,044][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:20,046][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:25,048][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:30,050][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:35,052][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:40,054][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:45,056][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:50,057][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:48:55,058][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:00,060][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:05,061][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:10,062][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:15,064][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:20,065][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:25,066][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:30,068][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:35,070][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:40,071][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:45,072][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:50,074][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:49:55,075][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:00,077][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:05,079][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:10,082][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:15,084][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:20,085][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:25,087][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:30,088][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:35,090][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:40,091][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:45,092][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:50,095][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:50:55,097][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:00,099][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:05,101][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:10,102][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:15,104][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:20,105][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:25,107][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:30,109][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:35,110][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:40,112][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:45,113][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:50,115][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:51:55,116][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:00,118][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:05,119][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:10,120][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:15,121][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:20,123][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:25,125][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:30,127][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:35,128][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:40,135][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:45,141][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:50,143][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:52:55,144][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:53:00,146][ INFO][PID:371830] Checking for cancel request [2026-07-08 18:53:01,994][ INFO][PID:371830] Downloading results from builder [2026-07-08 18:53:02,026][ INFO][PID:371830] rsyncing of mockbuilder@3.230.127.151:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089 started [2026-07-08 18:53:02,092][ INFO][PID:371830] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.230.127.151:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/build-10699089.rsync.log [2026-07-08 18:53:06,589][ INFO][PID:371830] rsyncing finished. [2026-07-08 18:53:06,593][ INFO][PID:371830] VM Release request [2026-07-08 18:53:06,802][ INFO][PID:371830] Searching for 'success' file in resultdir [2026-07-08 18:53:06,866][ INFO][PID:371830] Getting build details [2026-07-08 18:53:06,868][ INFO][PID:371830] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089 [2026-07-08 18:53:06,937][ INFO][PID:371830] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/Sunshine-0.0.5392-1.src.rpm [2026-07-08 18:53:06,939][ INFO][PID:371830] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/Sunshine-0.0.5392-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5392-1'} [2026-07-08 18:53:06,951][ INFO][PID:371830] Finished build: id=10699089 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392 chroot=srpm-builds [2026-07-08 18:53:07,047][ INFO][PID:371830] Worker succeeded build, took 588.2953670024872 [2026-07-08 18:53:07,065][ INFO][PID:371830] 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:5392", "submitter": null, "ended_on": 1783536787.047086, "started_on": 1783536198.751719, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10699089", "build_id": 10699089, "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\": \"tmpx2ykd9cs\", \"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:5392/srpm-builds/10699089/Sunshine-0.0.5392-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--5364ffb0-051f-4e4c-80fc-71092cc82be7", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5392", "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:5392", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5392", "result_dir": "10699089", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5392-1", "id": 10699089, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-08 18:53:07,823][ INFO][PID:371830] Sending fedora-messaging bus message in build.end [2026-07-08 18:53:08,223][ INFO][PID:371830] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/builder-live.log by gzip [2026-07-08 18:53:08,243][ INFO][PID:371830] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/builder-live.log' as PID 430146 [2026-07-08 18:53:08,347][ INFO][PID:371830] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/builder-live.log) [2026-07-08 18:53:08,351][ INFO][PID:371830] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/backend.log by gzip [2026-07-08 18:53:08,354][ INFO][PID:371830] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5392/srpm-builds/10699089/backend.log' as PID 430165