[2026-04-17 17:10:38,259][ INFO][PID:3776142] Marking build as starting [2026-04-17 17:10:38,352][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:10:38,365][ INFO][PID:3776142] VM allocation process starts [2026-04-17 17:10:38,448][ INFO][PID:3776142] Trying to allocate VM: ResallocHost, ticket_id=2392561, requested_tags=['arch_x86_64', 'copr_builder'] [2026-04-17 17:10:43,455][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:10:44,573][ INFO][PID:3776142] Allocated host ResallocHost, ticket_id=2392561, hostname=3.238.171.171, name=aws_x86_64_normalreserved_prod_06194135_20260417_170820, requested_tags=['arch_x86_64', 'copr_builder'] [2026-04-17 17:10:44,576][ INFO][PID:3776142] Allocating ssh connection to builder [2026-04-17 17:10:44,579][ INFO][PID:3776142] Checking that builder machine is OK [2026-04-17 17:10:45,044][ INFO][PID:3776142] Installed copr-rpmbuild version: 1.8 [2026-04-17 17:10:45,050][ INFO][PID:3776142] Running remote command: copr-builder-ready srpm-builds [2026-04-17 17:10:45,397][ INFO][PID:3776142] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2026-04-17 17:10:45,398][ INFO][PID:3776142] Filling build.info file with builder info [2026-04-17 17:10:45,399][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:10:45,401][ INFO][PID:3776142] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "dirextric", "project_name": "dolphin-emu-git", "project_dirname": "dolphin-emu-git", "submitter": null, "ended_on": null, "started_on": 1776445845.4015577, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10343049", "build_id": 10343049, "package_name": "dolphin-emu-git", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/bin/bash\\n\\n# Be safe.\\nset -euo pipefail\\n\\n# Get latest commit details.\\nlatest_commit_hash=$(curl -s \\\"https://api.github.com/repos/dolphin-emu/dolphin/commits\\\" | jq -r .[0].sha)\\nlatest_commit_ahead_by=$(curl -s \\\"https://api.github.com/repos/dolphin-emu/dolphin/compare/5.0...${latest_commit_hash}\\\" | jq .ahead_by)\\nlatest_commit_description_dash=5.0-${latest_commit_ahead_by}\\nlatest_commit_description_dot=5.0.${latest_commit_ahead_by}\\nlatest_commit_time=$(date --date=\\\"$(curl -s \\\"https://api.github.com/repos/dolphin-emu/dolphin/commits\\\" | jq -r .[0].commit.committer.date)\\\" --utc +%Y%m%dT%H%M%SZ)\\n\\n# Get dolphin-emu-git.spec and source tarballs.\\ncurl -JLOsS \\\"https://gitlab.com/dirextric/dolphin-emu-data/-/raw/master/dolphin-emu-git.spec\\\"\\ncurl -LOsS \\\"https://github.com/dolphin-emu/dolphin/archive/${latest_commit_hash}.tar.gz\\\"\\ncurl -JLOsS \\\"https://github.com/mgba-emu/mgba/archive/master.tar.gz\\\"\\ncurl -JLOsS \\\"https://github.com/KhronosGroup/SPIRV-Cross/archive/master.tar.gz\\\"\\ncurl -JLOsS \\\"https://github.com/zlib-ng/zlib-ng/archive/develop.tar.gz\\\"\\ncurl -JLOsS \\\"https://github.com/randy408/libspng/archive/master.tar.gz\\\"\\n\\n# Populate dolphin-emu-git.spec with latest commit values.\\nsed -i 's/REPLACEME_DOLPHIN_DESCRIPTION/'\\\"${latest_commit_description_dash}\\\"'/g' dolphin-emu-git.spec\\nsed -i 's/REPLACEME_DOLPHIN_REVISION/'\\\"${latest_commit_hash}\\\"'/g' dolphin-emu-git.spec\\nsed -i 's/REPLACEME_VERSION/'\\\"${latest_commit_description_dot}\\\"'/g' dolphin-emu-git.spec\\n\\n# Extract and merge source tarballs.\\ntar -xf \\\"${latest_commit_hash}\\\".tar.gz\\ntar -xf mgba-master.tar.gz\\ntar -xf SPIRV-Cross-master.tar.gz\\ntar -xf zlib-ng-develop.tar.gz\\ntar -xf libspng-master.tar.gz\\nrmdir dolphin-\\\"${latest_commit_hash}\\\"/Externals/mGBA/mgba\\nmv mgba-master dolphin-\\\"${latest_commit_hash}\\\"/Externals/mGBA/mgba\\nrmdir dolphin-\\\"${latest_commit_hash}\\\"/Externals/spirv_cross/SPIRV-Cross\\nmv SPIRV-Cross-master dolphin-\\\"${latest_commit_hash}\\\"/Externals/spirv_cross/SPIRV-Cross\\nrmdir dolphin-\\\"${latest_commit_hash}\\\"/Externals/zlib-ng/zlib-ng\\nmv zlib-ng-develop dolphin-\\\"${latest_commit_hash}\\\"/Externals/zlib-ng/zlib-ng\\nrmdir dolphin-\\\"${latest_commit_hash}\\\"/Externals/libspng/libspng\\nmv libspng-master dolphin-\\\"${latest_commit_hash}\\\"/Externals/libspng/libspng\\n\\n# Remove original source tarballs and recompress new source, then remove new source directory.\\nrm \\\"${latest_commit_hash}\\\".tar.gz\\nrm mgba-master.tar.gz\\nrm SPIRV-Cross-master.tar.gz\\nrm zlib-ng-develop.tar.gz\\nrm libspng-master.tar.gz\\ntar -cf \\\"${latest_commit_hash}\\\".tar.gz dolphin-\\\"${latest_commit_hash}\\\"\\nrm -rf dolphin-\\\"${latest_commit_hash}\\\"\\n\\n# Create output folder and move dolphin-emu-git.spec and source tarball into output folder.\\nmkdir output\\nmv dolphin-emu-git.spec output/\\nmv \\\"${latest_commit_hash}\\\".tar.gz output/\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"curl jq\", \"resultdir\": \"output/\", \"tmp\": \"tmpem5jea9z\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "dirextric/dolphin-emu-git--60d33f2c-f3d7-47f0-b7dc-08df0762171f", "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-tumbleweed" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/dirextric/dolphin-emu-git", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/dirextric/dolphin-emu-git", "result_dir": "10343049", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10343049, "mockchain_macros": { "copr_username": "dirextric", "copr_projectname": "dolphin-emu-git", "vendor": "Fedora Project COPR (dirextric/dolphin-emu-git)" } } ] } [2026-04-17 17:10:45,484][ INFO][PID:3776142] Sending fedora-messaging bus message in build.start [2026-04-17 17:10:46,695][ INFO][PID:3776142] Sending fedora-messaging bus message in chroot.start [2026-04-17 17:10:46,726][ INFO][PID:3776142] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/10343049 --detached [2026-04-17 17:10:47,246][ INFO][PID:3776142] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '3.238.171.171' (ED25519) to the list of known hosts. [2026-04-17 17:10:47,247][ INFO][PID:3776142] Downloading the builder-live.log file, attempt 1 [2026-04-17 17:10:47,256][ INFO][PID:3776142] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@3.238.171.171 copr-rpmbuild-log [2026-04-17 17:10:52,265][ INFO][PID:3776142] Periodic builder liveness probe: alive [2026-04-17 17:10:52,267][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:10:57,277][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:11:02,280][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:11:07,288][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:11:12,291][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:11:17,293][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:11:22,298][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:11:27,302][ INFO][PID:3776142] Checking for cancel request [2026-04-17 17:11:30,475][ INFO][PID:3776142] Downloading results from builder [2026-04-17 17:11:30,476][ INFO][PID:3776142] rsyncing of mockbuilder@3.238.171.171:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/dirextric/dolphin-emu-git/srpm-builds/10343049 started [2026-04-17 17:11:30,480][ INFO][PID:3776142] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@3.238.171.171:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/dirextric/dolphin-emu-git/srpm-builds/10343049/ &> /var/lib/copr/public_html/results/dirextric/dolphin-emu-git/srpm-builds/10343049/build-10343049.rsync.log [2026-04-17 17:11:30,795][ INFO][PID:3776142] rsyncing finished. [2026-04-17 17:11:30,796][ INFO][PID:3776142] VM Release request [2026-04-17 17:11:30,825][ INFO][PID:3776142] Searching for 'success' file in resultdir [2026-04-17 17:11:30,827][ ERROR][PID:3776142] Build failed: Backend process error: No success file => build failure [2026-04-17 17:11:30,830][ INFO][PID:3776142] Finished build: id=10343049 failed=True timeout=108000 destdir=/var/lib/copr/public_html/results/dirextric/dolphin-emu-git chroot=srpm-builds [2026-04-17 17:11:30,837][ ERROR][PID:3776142] Backend process error: No success file => build failure [2026-04-17 17:11:30,839][ INFO][PID:3776142] Worker failed build, took 45.437504053115845 [2026-04-17 17:11:30,842][ INFO][PID:3776142] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "dirextric", "project_name": "dolphin-emu-git", "project_dirname": "dolphin-emu-git", "submitter": null, "ended_on": 1776445890.8390617, "started_on": 1776445845.4015577, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "10343049", "build_id": 10343049, "package_name": "dolphin-emu-git", "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#!/bin/bash\\n\\n# Be safe.\\nset -euo pipefail\\n\\n# Get latest commit details.\\nlatest_commit_hash=$(curl -s \\\"https://api.github.com/repos/dolphin-emu/dolphin/commits\\\" | jq -r .[0].sha)\\nlatest_commit_ahead_by=$(curl -s \\\"https://api.github.com/repos/dolphin-emu/dolphin/compare/5.0...${latest_commit_hash}\\\" | jq .ahead_by)\\nlatest_commit_description_dash=5.0-${latest_commit_ahead_by}\\nlatest_commit_description_dot=5.0.${latest_commit_ahead_by}\\nlatest_commit_time=$(date --date=\\\"$(curl -s \\\"https://api.github.com/repos/dolphin-emu/dolphin/commits\\\" | jq -r .[0].commit.committer.date)\\\" --utc +%Y%m%dT%H%M%SZ)\\n\\n# Get dolphin-emu-git.spec and source tarballs.\\ncurl -JLOsS \\\"https://gitlab.com/dirextric/dolphin-emu-data/-/raw/master/dolphin-emu-git.spec\\\"\\ncurl -LOsS \\\"https://github.com/dolphin-emu/dolphin/archive/${latest_commit_hash}.tar.gz\\\"\\ncurl -JLOsS \\\"https://github.com/mgba-emu/mgba/archive/master.tar.gz\\\"\\ncurl -JLOsS \\\"https://github.com/KhronosGroup/SPIRV-Cross/archive/master.tar.gz\\\"\\ncurl -JLOsS \\\"https://github.com/zlib-ng/zlib-ng/archive/develop.tar.gz\\\"\\ncurl -JLOsS \\\"https://github.com/randy408/libspng/archive/master.tar.gz\\\"\\n\\n# Populate dolphin-emu-git.spec with latest commit values.\\nsed -i 's/REPLACEME_DOLPHIN_DESCRIPTION/'\\\"${latest_commit_description_dash}\\\"'/g' dolphin-emu-git.spec\\nsed -i 's/REPLACEME_DOLPHIN_REVISION/'\\\"${latest_commit_hash}\\\"'/g' dolphin-emu-git.spec\\nsed -i 's/REPLACEME_VERSION/'\\\"${latest_commit_description_dot}\\\"'/g' dolphin-emu-git.spec\\n\\n# Extract and merge source tarballs.\\ntar -xf \\\"${latest_commit_hash}\\\".tar.gz\\ntar -xf mgba-master.tar.gz\\ntar -xf SPIRV-Cross-master.tar.gz\\ntar -xf zlib-ng-develop.tar.gz\\ntar -xf libspng-master.tar.gz\\nrmdir dolphin-\\\"${latest_commit_hash}\\\"/Externals/mGBA/mgba\\nmv mgba-master dolphin-\\\"${latest_commit_hash}\\\"/Externals/mGBA/mgba\\nrmdir dolphin-\\\"${latest_commit_hash}\\\"/Externals/spirv_cross/SPIRV-Cross\\nmv SPIRV-Cross-master dolphin-\\\"${latest_commit_hash}\\\"/Externals/spirv_cross/SPIRV-Cross\\nrmdir dolphin-\\\"${latest_commit_hash}\\\"/Externals/zlib-ng/zlib-ng\\nmv zlib-ng-develop dolphin-\\\"${latest_commit_hash}\\\"/Externals/zlib-ng/zlib-ng\\nrmdir dolphin-\\\"${latest_commit_hash}\\\"/Externals/libspng/libspng\\nmv libspng-master dolphin-\\\"${latest_commit_hash}\\\"/Externals/libspng/libspng\\n\\n# Remove original source tarballs and recompress new source, then remove new source directory.\\nrm \\\"${latest_commit_hash}\\\".tar.gz\\nrm mgba-master.tar.gz\\nrm SPIRV-Cross-master.tar.gz\\nrm zlib-ng-develop.tar.gz\\nrm libspng-master.tar.gz\\ntar -cf \\\"${latest_commit_hash}\\\".tar.gz dolphin-\\\"${latest_commit_hash}\\\"\\nrm -rf dolphin-\\\"${latest_commit_hash}\\\"\\n\\n# Create output folder and move dolphin-emu-git.spec and source tarball into output folder.\\nmkdir output\\nmv dolphin-emu-git.spec output/\\nmv \\\"${latest_commit_hash}\\\".tar.gz output/\\n\", \"chroot\": \"fedora-44-x86_64\", \"builddeps\": \"curl jq\", \"resultdir\": \"output/\", \"tmp\": \"tmpem5jea9z\", \"hook_data\": true}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "dirextric/dolphin-emu-git--60d33f2c-f3d7-47f0-b7dc-08df0762171f", "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-tumbleweed" ], "distributions_in_project": [ "fedora-42", "fedora-43", "fedora-44", "fedora-rawhide", "opensuse-tumbleweed" ], "destdir": "/var/lib/copr/public_html/results/dirextric/dolphin-emu-git", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/dirextric/dolphin-emu-git", "result_dir": "10343049", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 10343049, "mockchain_macros": { "copr_username": "dirextric", "copr_projectname": "dolphin-emu-git", "vendor": "Fedora Project COPR (dirextric/dolphin-emu-git)" } } ] } [2026-04-17 17:11:30,907][ INFO][PID:3776142] Sending fedora-messaging bus message in build.end [2026-04-17 17:11:30,962][ INFO][PID:3776142] Compressing /var/lib/copr/public_html/results/dirextric/dolphin-emu-git/srpm-builds/10343049/builder-live.log by gzip [2026-04-17 17:11:30,963][ INFO][PID:3776142] Running command 'gzip /var/lib/copr/public_html/results/dirextric/dolphin-emu-git/srpm-builds/10343049/builder-live.log' as PID 3784371 [2026-04-17 17:11:30,975][ INFO][PID:3776142] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/dirextric/dolphin-emu-git/srpm-builds/10343049/builder-live.log) [2026-04-17 17:11:30,977][ INFO][PID:3776142] Compressing /var/lib/copr/public_html/results/dirextric/dolphin-emu-git/srpm-builds/10343049/backend.log by gzip