[2026-05-30 17:09:29,805][ INFO][PID:3485581] Marking build as starting [2026-05-30 17:09:29,843][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:09:29,845][ INFO][PID:3485581] VM allocation process starts [2026-05-30 17:09:29,854][ INFO][PID:3485581] Trying to allocate VM: ResallocHost, ticket_id=3143163, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-30 17:09:32,898][ INFO][PID:3485581] Allocated host ResallocHost, ticket_id=3143163, hostname=100.55.155.251, name=aws_x86_64_reserved_prod_10402797_20260530_164728, requested_tags=['arch_x86_64', 'copr_builder'] [2026-05-30 17:09:32,899][ INFO][PID:3485581] Allocating ssh connection to builder [2026-05-30 17:09:32,900][ INFO][PID:3485581] Checking that builder machine is OK [2026-05-30 17:09:33,242][ INFO][PID:3485581] Installed copr-rpmbuild version: 1.8 [2026-05-30 17:09:33,243][ INFO][PID:3485581] Running remote command: copr-builder-ready srpm-builds [2026-05-30 17:09:33,459][ INFO][PID:3485581] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-05-30 17:09:33,460][ INFO][PID:3485581] Filling build.info file with builder info [2026-05-30 17:09:33,461][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:09:33,462][ INFO][PID:3485581] 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:5222", "submitter": null, "ended_on": null, "started_on": 1780160973.4621475, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10526749", "build_id": 10526749, "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\": \"tmp4f56h049\", \"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--78c465b4-b504-4a24-a5ef-aedaae822614", "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:5222", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5222", "result_dir": "10526749", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10526749, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-30 17:09:33,496][ INFO][PID:3485581] Sending fedora-messaging bus message in build.start [2026-05-30 17:09:33,945][ INFO][PID:3485581] Sending fedora-messaging bus message in chroot.start [2026-05-30 17:09:33,972][ INFO][PID:3485581] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10526749 --detached [2026-05-30 17:09:34,424][ INFO][PID:3485581] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '100.55.155.251' (ED25519) to the list of known hosts. [2026-05-30 17:09:34,425][ INFO][PID:3485581] Downloading the builder-live.log file, attempt 1 [2026-05-30 17:09:34,427][ INFO][PID:3485581] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@100.55.155.251 copr-rpmbuild-log [2026-05-30 17:09:39,431][ INFO][PID:3485581] Periodic builder liveness probe: alive [2026-05-30 17:09:39,431][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:09:44,432][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:09:49,434][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:09:54,435][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:09:59,436][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:04,437][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:09,438][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:14,439][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:19,441][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:24,444][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:29,445][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:34,447][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:39,448][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:44,449][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:49,450][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:54,451][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:10:59,453][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:04,454][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:09,455][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:14,456][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:19,458][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:24,459][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:29,460][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:34,462][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:39,463][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:44,464][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:49,466][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:54,467][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:11:59,468][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:04,470][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:09,471][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:14,472][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:19,473][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:24,474][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:29,476][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:34,477][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:39,478][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:44,479][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:49,481][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:54,482][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:12:59,483][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:04,485][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:09,543][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:14,545][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:19,546][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:24,547][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:29,549][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:34,550][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:39,551][ INFO][PID:3485581] Checking for cancel request [2026-05-30 17:13:39,553][ INFO][PID:3485581] Calling cancel callback, and waiting for thread.join() [2026-05-30 17:13:39,553][ INFO][PID:3485581] Canceling the build on the remote machine [2026-05-30 17:13:42,864][ INFO][PID:3485581] Cancel request succeeded out: success err: Warning: Permanently added '100.55.155.251' (ED25519) to the list of known hosts. [2026-05-30 17:13:42,865][ ERROR][PID:3485581] Build was canceled [2026-05-30 17:13:42,879][ INFO][PID:3485581] VM Release request [2026-05-30 17:13:42,891][WARNING][PID:3485581] Switching not-finished job state to 'failed' [2026-05-30 17:13:42,892][ INFO][PID:3485581] Worker failed build, took 249.42946338653564 [2026-05-30 17:13:42,893][ INFO][PID:3485581] 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:5222", "submitter": null, "ended_on": 1780161222.8916109, "started_on": 1780160973.4621475, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10526749", "build_id": 10526749, "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\": \"tmp4f56h049\", \"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--78c465b4-b504-4a24-a5ef-aedaae822614", "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:5222", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/lizardbyte/pulls:pr:5222", "result_dir": "10526749", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10526749, "mockchain_macros": { "copr_username": "lizardbyte", "copr_projectname": "pulls", "vendor": "Fedora Project COPR (lizardbyte/pulls)" } } ] } [2026-05-30 17:13:42,940][ INFO][PID:3485581] Sending fedora-messaging bus message in build.end [2026-05-30 17:13:42,970][ INFO][PID:3485581] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5222/srpm-builds/10526749/builder-live.log by gzip [2026-05-30 17:13:42,971][ INFO][PID:3485581] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5222/srpm-builds/10526749/builder-live.log' as PID 3502284 [2026-05-30 17:13:42,995][ INFO][PID:3485581] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5222/srpm-builds/10526749/builder-live.log) [2026-05-30 17:13:42,996][ INFO][PID:3485581] Compressing /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5222/srpm-builds/10526749/backend.log by gzip [2026-05-30 17:13:42,997][ INFO][PID:3485581] Running command 'gzip /var/lib/copr/public_html/results/lizardbyte/pulls:pr:5222/srpm-builds/10526749/backend.log' as PID 3502291