[2026-07-18 01:04:15,731][ INFO][PID:2325212] Marking build as starting [2026-07-18 01:04:15,769][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:15,770][ INFO][PID:2325212] VM allocation process starts [2026-07-18 01:04:15,779][ INFO][PID:2325212] Trying to allocate VM: ResallocHost, ticket_id=3979403, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-18 01:04:20,781][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:21,837][ INFO][PID:2325212] Allocated host ResallocHost, ticket_id=3979403, hostname=75.101.181.174, name=aws_x86_64_reserved_prod_13143702_20260718_003419, requested_tags=['arch_x86_64', 'copr_builder'] [2026-07-18 01:04:21,838][ INFO][PID:2325212] Allocating ssh connection to builder [2026-07-18 01:04:21,839][ INFO][PID:2325212] Checking that builder machine is OK [2026-07-18 01:04:22,149][ INFO][PID:2325212] Installed copr-rpmbuild version: 1.8 [2026-07-18 01:04:22,150][ INFO][PID:2325212] Running remote command: copr-builder-ready srpm-builds [2026-07-18 01:04:22,323][ INFO][PID:2325212] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-07-18 01:04:22,323][ INFO][PID:2325212] Filling build.info file with builder info [2026-07-18 01:04:22,596][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:22,597][ INFO][PID:2325212] 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:5368", "submitter": null, "ended_on": null, "started_on": 1784336662.5975072, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10739383", "build_id": 10739383, "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\": \"tmp9r3riym1\", \"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--81ac87f7-2106-4a9c-b47c-9a3854d5752f", "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:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10739383", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "id": 10739383, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-18 01:04:22,636][ INFO][PID:2325212] Sending fedora-messaging bus message in build.start [2026-07-18 01:04:23,049][ INFO][PID:2325212] Sending fedora-messaging bus message in chroot.start [2026-07-18 01:04:23,077][ INFO][PID:2325212] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10739383 --detached [2026-07-18 01:04:23,555][ INFO][PID:2325212] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '75.101.181.174' (ED25519) to the list of known hosts. [2026-07-18 01:04:23,556][ INFO][PID:2325212] Downloading the builder-live.log file, attempt 1 [2026-07-18 01:04:23,558][ INFO][PID:2325212] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@75.101.181.174 copr-rpmbuild-log [2026-07-18 01:04:28,562][ INFO][PID:2325212] Periodic builder liveness probe: alive [2026-07-18 01:04:28,563][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:33,564][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:38,565][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:43,566][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:48,567][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:53,569][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:04:58,575][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:03,576][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:08,577][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:13,579][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:18,580][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:23,581][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:28,582][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:33,583][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:38,585][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:43,586][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:48,596][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:53,598][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:05:58,600][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:03,601][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:08,602][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:13,603][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:18,605][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:23,606][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:28,607][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:33,608][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:38,610][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:43,611][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:48,612][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:53,614][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:06:58,619][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:03,621][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:08,623][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:13,624][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:18,625][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:23,626][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:28,628][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:33,629][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:38,630][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:43,632][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:48,634][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:53,635][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:07:58,637][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:03,638][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:08,640][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:13,641][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:18,642][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:23,644][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:28,645][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:33,647][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:38,648][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:43,650][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:48,651][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:53,653][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:08:58,660][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:03,671][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:08,673][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:13,674][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:18,676][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:23,686][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:28,696][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:33,700][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:38,704][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:43,716][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:48,724][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:53,727][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:09:58,728][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:03,730][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:08,738][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:13,747][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:18,748][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:23,751][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:28,755][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:33,782][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:38,790][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:43,795][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:48,800][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:53,803][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:10:58,804][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:03,805][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:08,807][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:13,808][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:18,815][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:23,817][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:28,819][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:33,822][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:38,830][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:43,832][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:48,846][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:53,858][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:11:58,860][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:03,861][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:08,864][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:13,866][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:18,868][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:23,872][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:28,884][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:33,886][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:38,888][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:43,889][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:48,891][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:53,895][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:12:58,897][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:03,900][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:08,902][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:13,904][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:18,907][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:23,908][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:28,913][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:33,915][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:38,918][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:43,920][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:48,924][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:53,925][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:13:58,926][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:03,928][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:08,935][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:13,940][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:18,944][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:23,948][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:28,963][ INFO][PID:2325212] Periodic builder liveness probe: alive [2026-07-18 01:14:28,964][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:33,970][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:38,974][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:43,978][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:48,980][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:53,985][ INFO][PID:2325212] Checking for cancel request [2026-07-18 01:14:58,190][ INFO][PID:2325212] Downloading results from builder [2026-07-18 01:14:58,191][ INFO][PID:2325212] rsyncing of mockbuilder@75.101.181.174:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383 started [2026-07-18 01:14:58,193][ INFO][PID:2325212] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@75.101.181.174:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/ &> /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/build-10739383.rsync.log [2026-07-18 01:15:04,000][ INFO][PID:2325212] rsyncing finished. [2026-07-18 01:15:04,002][ INFO][PID:2325212] VM Release request [2026-07-18 01:15:04,011][ INFO][PID:2325212] Searching for 'success' file in resultdir [2026-07-18 01:15:04,012][ INFO][PID:2325212] Getting build details [2026-07-18 01:15:04,013][ INFO][PID:2325212] Retrieving SRPM info from /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383 [2026-07-18 01:15:04,014][ INFO][PID:2325212] SRPM URL: https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/Sunshine-0.0.5368-1.src.rpm [2026-07-18 01:15:04,014][ INFO][PID:2325212] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/Sunshine-0.0.5368-1.src.rpm', 'pkg_name': 'Sunshine', 'pkg_version': '0.0.5368-1'} [2026-07-18 01:15:04,015][ INFO][PID:2325212] Finished build: id=10739383 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368 chroot=srpm-builds [2026-07-18 01:15:04,017][ INFO][PID:2325212] Worker succeeded build, took 641.419793844223 [2026-07-18 01:15:04,018][ INFO][PID:2325212] 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:5368", "submitter": null, "ended_on": 1784337304.017301, "started_on": 1784336662.5975072, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10739383", "build_id": 10739383, "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\": \"tmp9r3riym1\", \"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:5368/srpm-builds/10739383/Sunshine-0.0.5368-1.src.rpm", "uses_devel_repo": null, "sandbox": "lizardbyte/pulls--81ac87f7-2106-4a9c-b47c-9a3854d5752f", "results": { "architecture_specific_tags": { "fedora-43": {}, "fedora-44": {}, "fedora-rawhide": {}, "opensuse-leap-15.6": {} }, "name": "Sunshine", "epoch": null, "version": "0.0.5368", "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:5368", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5368", "result_dir": "10739383", "built_packages": "", "tags": [ "arch_x86_64" ], "rpmeta_prediction": null, "pkg_version": "0.0.5368-1", "id": 10739383, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-07-18 01:15:04,072][ INFO][PID:2325212] Sending fedora-messaging bus message in build.end [2026-07-18 01:15:04,101][ INFO][PID:2325212] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/builder-live.log by gzip [2026-07-18 01:15:04,103][ INFO][PID:2325212] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/builder-live.log' as PID 2404404 [2026-07-18 01:15:04,127][ INFO][PID:2325212] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/builder-live.log) [2026-07-18 01:15:04,128][ INFO][PID:2325212] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/backend.log by gzip [2026-07-18 01:15:04,130][ INFO][PID:2325212] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5368/srpm-builds/10739383/backend.log' as PID 2404435