[2026-07-07 07:21:42,259][ INFO][PID:10830] Marking build as starting [2026-07-07 07:21:42,347][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:21:42,356][ INFO][PID:10830] VM allocation process starts [2026-07-07 07:21:42,423][ INFO][PID:10830] Trying to allocate VM: ResallocHost, ticket_id=3787746, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-07 07:21:47,430][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:21:52,435][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:21:57,452][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:02,457][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:07,461][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:12,464][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:17,477][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:22,486][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:27,488][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:32,489][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:37,499][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:42,503][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:47,509][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:50,655][ INFO][PID:10830] Allocated host ResallocHost, ticket_id=3787746, hostname=2620:52:6:1161:dead:beef:cafe:c14c, name=vmhost_x86_01_prod_12929600_20260707_072049, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-07 07:22:50,658][ INFO][PID:10830] Allocating ssh connection to builder [2026-07-07 07:22:50,659][ INFO][PID:10830] Checking that builder machine is OK [2026-07-07 07:22:51,183][ INFO][PID:10830] Installed copr-rpmbuild version: 1.8 [2026-07-07 07:22:51,185][ INFO][PID:10830] Running remote command: copr-builder-ready srpm-builds [2026-07-07 07:22:51,506][ INFO][PID:10830] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-07 07:22:51,507][ INFO][PID:10830] Filling build.info file with builder info [2026-07-07 07:22:51,508][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:22:51,510][ INFO][PID:10830] 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:5381", "submitter": null, "ended_on": null, "started_on": 1783408971.5098245, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10692051", "build_id": 10692051, "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\": \"tmp2ax89tom\", \"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--2cc34e7d-cdaa-47c2-b107-50b2d1123e2e", "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:5381", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5381", "result_dir": "10692051", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10692051, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-07 07:22:51,554][ INFO][PID:10830] Sending fedora-messaging bus message in build.start [2026-07-07 07:22:52,118][ INFO][PID:10830] Sending fedora-messaging bus message in chroot.start [2026-07-07 07:22:52,152][ INFO][PID:10830] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10692051 --detached [2026-07-07 07:22:52,758][ INFO][PID:10830] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '2620:52:6:1161:dead:beef:cafe:c14c' (ED25519) to the list of known hosts. [2026-07-07 07:22:52,760][ INFO][PID:10830] Downloading the builder-live.log file, attempt 1 [2026-07-07 07:22:52,863][ INFO][PID:10830] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@2620:52:6:1161:dead:beef:cafe:c14c copr-rpmbuild-log [2026-07-07 07:22:57,827][ INFO][PID:10830] Periodic builder liveness probe: alive [2026-07-07 07:22:57,834][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:02,852][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:07,860][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:12,866][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:17,877][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:22,882][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:27,885][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:32,887][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:37,891][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:42,901][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:47,903][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:52,905][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:23:57,907][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:02,909][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:07,917][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:12,919][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:17,923][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:22,928][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:27,930][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:32,934][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:37,938][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:42,945][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:47,946][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:52,948][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:24:57,949][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:02,951][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:07,953][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:12,958][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:17,961][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:22,965][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:27,967][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:32,968][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:37,973][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:42,976][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:47,978][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:52,979][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:25:57,981][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:02,983][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:07,985][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:12,987][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:17,990][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:22,992][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:27,996][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:32,999][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:38,004][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:43,007][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:48,010][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:53,013][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:26:58,015][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:03,018][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:08,022][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:13,027][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:18,030][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:23,035][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:28,039][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:33,042][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:38,045][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:43,050][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:48,052][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:53,057][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:27:58,062][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:03,064][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:08,069][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:13,071][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:18,078][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:23,081][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:28,084][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:33,087][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:38,089][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:43,092][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:48,095][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:53,097][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:28:58,099][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:03,101][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:08,102][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:13,104][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:18,105][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:23,107][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:28,109][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:33,110][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:38,112][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:43,113][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:48,115][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:53,116][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:29:58,118][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:03,119][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:08,123][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:13,125][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:18,127][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:23,129][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:28,130][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:33,131][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:38,136][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:43,138][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:48,139][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:53,141][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:30:58,143][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:03,144][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:08,146][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:13,147][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:18,149][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:23,151][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:28,153][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:33,155][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:38,157][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:43,159][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:48,161][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:53,162][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:31:58,164][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:03,165][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:08,167][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:13,170][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:18,173][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:23,231][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:28,234][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:33,238][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:38,313][ INFO][PID:10830] Checking for cancel request [2026-07-07 07:32:41,078][ INFO][PID:10830] Downloading results from builder [2026-07-07 07:32:41,098][ INFO][PID:10830] rsyncing of mockbuilder@[2620:52:6:1161:dead:beef:cafe:c14c]:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051 started [2026-07-07 07:32:41,153][ INFO][PID:10830] 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:c14c]:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/build-10692051.rsync.log [2026-07-07 07:32:51,979][ INFO][PID:10830] rsyncing finished. [2026-07-07 07:32:51,985][ INFO][PID:10830] VM Release request [2026-07-07 07:32:52,116][ INFO][PID:10830] Searching for 'success' file in resultdir [2026-07-07 07:32:52,155][ INFO][PID:10830] Getting build details [2026-07-07 07:32:52,158][ INFO][PID:10830] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051 [2026-07-07 07:32:52,207][ INFO][PID:10830] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/Sunshine-0.0.5381-1.src.rpm [2026-07-07 07:32:52,210][ INFO][PID:10830] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/Sunshine-0.0.5381-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5381-1'} [2026-07-07 07:32:52,217][ INFO][PID:10830] Finished build: id=10692051 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381 chroot=srpm-builds [2026-07-07 07:32:52,290][ INFO][PID:10830] Worker succeeded build, took 600.7795784473419 [2026-07-07 07:32:52,301][ INFO][PID:10830] 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:5381", "submitter": null, "ended_on": 1783409572.289403, "started_on": 1783408971.5098245, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10692051", "build_id": 10692051, "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\": \"tmp2ax89tom\", \"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:5381/srpm-builds/10692051/Sunshine-0.0.5381-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--2cc34e7d-cdaa-47c2-b107-50b2d1123e2e", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5381", "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:5381", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5381", "result_dir": "10692051", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5381-1", "id": 10692051, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-07 07:32:52,959][ INFO][PID:10830] Sending fedora-messaging bus message in build.end [2026-07-07 07:32:53,246][ INFO][PID:10830] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/builder-live.log by gzip [2026-07-07 07:32:53,262][ INFO][PID:10830] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/builder-live.log' as PID 128234 [2026-07-07 07:32:53,280][ INFO][PID:10830] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/builder-live.log) [2026-07-07 07:32:53,283][ INFO][PID:10830] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/backend.log by gzip [2026-07-07 07:32:53,286][ INFO][PID:10830] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5381/srpm-builds/10692051/backend.log' as PID 128236