[2026-05-14 17:23:35,476][ INFO][PID:515639] Marking build as starting [2026-05-14 17:23:35,533][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:23:35,540][ INFO][PID:515639] VM allocation process starts [2026-05-14 17:23:35,732][ INFO][PID:515639] Trying to allocate VM: ResallocHost, ticket_id=2892111, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-14 17:23:40,736][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:23:45,738][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:23:50,739][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:23:55,745][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:00,747][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:05,753][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:10,755][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:15,757][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:20,758][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:25,761][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:30,764][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:35,810][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:40,812][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:45,815][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:50,817][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:24:55,818][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:00,848][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:05,850][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:10,855][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:15,861][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:18,047][ INFO][PID:515639] Allocated host ResallocHost, ticket_id=2892111, hostname=100.54.7.248, name=aws_x86_64_reserved_prod_08844956_20260514_172027, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-14 17:25:18,052][ INFO][PID:515639] Allocating ssh connection to builder [2026-05-14 17:25:18,058][ INFO][PID:515639] Checking that builder machine is OK [2026-05-14 17:25:18,635][ INFO][PID:515639] Installed copr-rpmbuild version: 1.8 [2026-05-14 17:25:18,646][ INFO][PID:515639] Running remote command: copr-builder-ready srpm-builds [2026-05-14 17:25:18,926][ INFO][PID:515639] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-14 17:25:18,928][ INFO][PID:515639] Filling build.info file with builder info [2026-05-14 17:25:18,933][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:18,937][ INFO][PID:515639] 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:5117", "submitter": null, "ended_on": null, "started_on": 1778779518.9371715, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10460710", "build_id": 10460710, "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\": \"tmpyvgk24ph\", \"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--f0e3a98c-1bc3-421f-b9ae-5c0fefdac307", "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:5117", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5117", "result_dir": "10460710", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10460710, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-14 17:25:19,003][ INFO][PID:515639] Sending fedora-messaging bus message in build.start [2026-05-14 17:25:20,077][ INFO][PID:515639] Sending fedora-messaging bus message in chroot.start [2026-05-14 17:25:20,139][ INFO][PID:515639] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10460710 --detached [2026-05-14 17:25:20,759][ INFO][PID:515639] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.54.7.248' (ED25519) to the list of known hosts. [2026-05-14 17:25:20,764][ INFO][PID:515639] Downloading the builder-live.log file, attempt 1 [2026-05-14 17:25:20,770][ INFO][PID:515639] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.54.7.248 copr-rpmbuild-log [2026-05-14 17:25:25,777][ INFO][PID:515639] Periodic builder liveness probe: alive [2026-05-14 17:25:25,803][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:30,804][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:35,806][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:40,808][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:45,810][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:50,822][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:25:55,825][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:00,827][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:05,864][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:10,867][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:15,904][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:20,912][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:25,937][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:30,938][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:35,940][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:40,941][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:45,943][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:50,944][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:26:55,946][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:00,947][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:05,950][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:10,952][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:15,953][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:20,955][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:25,957][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:30,959][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:35,961][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:40,967][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:45,974][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:50,988][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:27:56,084][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:01,097][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:06,103][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:11,107][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:16,118][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:21,119][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:26,122][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:31,128][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:36,130][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:41,132][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:46,136][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:51,167][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:28:56,207][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:01,213][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:06,214][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:11,216][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:16,218][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:21,219][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:26,221][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:31,297][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:36,314][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:41,352][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:46,361][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:51,392][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:29:56,405][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:01,410][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:06,425][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:11,430][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:16,431][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:21,479][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:26,534][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:32,630][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:37,725][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:42,749][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:47,752][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:52,775][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:30:57,796][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:02,891][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:07,894][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:12,898][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:17,906][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:22,909][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:27,916][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:32,938][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:37,951][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:42,954][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:47,956][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:53,052][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:31:58,054][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:03,274][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:08,276][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:13,279][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:18,281][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:23,282][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:28,286][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:33,288][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:38,291][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:43,300][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:48,309][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:53,310][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:32:58,356][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:03,358][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:08,359][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:13,362][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:18,369][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:23,390][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:29,027][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:34,066][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:39,105][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:44,134][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:49,201][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:54,206][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:33:59,247][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:34:04,547][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:34:09,561][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:34:14,723][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:34:19,729][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:34:24,852][ INFO][PID:515639] Checking for cancel request [2026-05-14 17:34:29,422][ INFO][PID:515639] Downloading results from builder [2026-05-14 17:34:29,446][ INFO][PID:515639] rsyncing of mockbuilder@100.54.7.248:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710 started [2026-05-14 17:34:29,497][ INFO][PID:515639] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@100.54.7.248:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/build-10460710.rsync.log [2026-05-14 17:34:34,761][ INFO][PID:515639] rsyncing finished. [2026-05-14 17:34:34,767][ INFO][PID:515639] VM Release request [2026-05-14 17:34:34,957][ INFO][PID:515639] Searching for 'success' file in resultdir [2026-05-14 17:34:35,041][ INFO][PID:515639] Getting build details [2026-05-14 17:34:35,045][ INFO][PID:515639] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710 [2026-05-14 17:34:35,099][ INFO][PID:515639] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/Sunshine-0.0.5117-1.src.rpm [2026-05-14 17:34:35,102][ INFO][PID:515639] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/Sunshine-0.0.5117-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5117-1'} [2026-05-14 17:34:35,119][ INFO][PID:515639] Finished build: id=10460710 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117 chroot=srpm-builds [2026-05-14 17:34:35,195][ INFO][PID:515639] Worker succeeded build, took 556.2583599090576 [2026-05-14 17:34:35,205][ INFO][PID:515639] 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:5117", "submitter": null, "ended_on": 1778780075.1955314, "started_on": 1778779518.9371715, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10460710", "build_id": 10460710, "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\": \"tmpyvgk24ph\", \"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:5117/srpm-builds/10460710/Sunshine-0.0.5117-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--f0e3a98c-1bc3-421f-b9ae-5c0fefdac307", "results": { "architecture_specific_tags": { "fedora-42": {}, "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5117", "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:5117", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5117", "result_dir": "10460710", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "0.0.5117-1", "id": 10460710, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-14 17:34:35,971][ INFO][PID:515639] Sending fedora-messaging bus message in build.end [2026-05-14 17:34:36,319][ INFO][PID:515639] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/builder-live.log by gzip [2026-05-14 17:34:36,338][ INFO][PID:515639] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/builder-live.log' as PID 598660 [2026-05-14 17:34:36,370][ INFO][PID:515639] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/builder-live.log) [2026-05-14 17:34:36,375][ INFO][PID:515639] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/backend.log by gzip [2026-05-14 17:34:36,380][ INFO][PID:515639] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5117/srpm-builds/10460710/backend.log' as PID 598662