[2025-07-10 22:43:00,242][ INFO][PID:1588622] Marking build as starting [2025-07-10 22:43:00,264][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:00,265][ INFO][PID:1588622] VM allocation process starts [2025-07-10 22:43:00,275][ INFO][PID:1588622] Trying to allocate VM: ResallocHost, ticket_id=3885641, requested_tags=['copr_builder', 'arch_x86_64'] [2025-07-10 22:43:05,277][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:10,278][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:15,279][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:20,280][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:25,281][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:30,282][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:35,283][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:40,284][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:45,287][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:50,288][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:43:55,289][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:00,290][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:05,291][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:10,293][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:15,295][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:20,296][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:25,297][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:28,372][ INFO][PID:1588622] Allocated host ResallocHost, ticket_id=3885641, hostname=34.238.51.238, name=aws_x86_64_spot_prod_05271800_20250710_224242, requested_tags=['copr_builder', 'arch_x86_64'] [2025-07-10 22:44:28,373][ INFO][PID:1588622] Allocating ssh connection to builder [2025-07-10 22:44:28,373][ INFO][PID:1588622] Checking that builder machine is OK [2025-07-10 22:44:28,861][ INFO][PID:1588622] Running remote command: copr-builder-ready srpm-builds [2025-07-10 22:44:29,061][ INFO][PID:1588622] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-07-10 22:44:29,062][ INFO][PID:1588622] Filling build.info file with builder info [2025-07-10 22:44:29,062][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:29,063][ INFO][PID:1588622] 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": "libimobiledevice-git", "project_dirname": "libimobiledevice-git", "submitter": null, "ended_on": null, "started_on": 1752187469.0636122, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9264166", "build_id": 9264166, "package_name": "libimobiledevice-glue-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/libimobiledevice/libimobiledevice-glue/commits\\\" | jq -r .[0].sha)\\nlatest_commit_time=$(date --date=\\\"$(curl -s \\\"https://api.github.com/repos/libimobiledevice/libimobiledevice-glue/commits\\\" | jq -r .[0].commit.committer.date)\\\" --utc +%Y%m%dT%H%M%SZ)\\n\\n# Get latest tag name.\\ngraphql_auth=\\\"Authorization: bearer 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\\\"\\ngraphql_query='{ \\\"query\\\": \\\"query { repository(owner: \\\\\\\"libimobiledevice\\\\\\\", name: \\\\\\\"libimobiledevice-glue\\\\\\\") { refs(refPrefix: \\\\\\\"refs/tags/\\\\\\\", first: 1, orderBy: {field: TAG_COMMIT_DATE, direction: DESC}) { edges { node { name } } } } }\\\" }'\\nlatest_git_tag=$(curl -s -H \\\"${graphql_auth}\\\" -X POST -d \\\"${graphql_query}\\\" https://api.github.com/graphql | jq -r .data.repository.refs.edges[0].node.name)\\n\\n# Get libimobiledevice-glue-git.spec and source tarballs.\\ncurl -JLOsS \\\"https://gitlab.com/dirextric/libimobiledevice-data/-/raw/master/libimobiledevice-glue-git.spec\\\"\\ncurl -LOsS \\\"https://github.com/libimobiledevice/libimobiledevice-glue/archive/${latest_commit_hash}.tar.gz\\\"\\n\\n# Populate libimobiledevice-glue-git.spec with latest commit and tag values.\\nsed -i 's/REPLACEME_GLUE_REVISION/'\\\"${latest_commit_hash}\\\"'/g' libimobiledevice-glue-git.spec\\nsed -i 's/REPLACEME_GLUE_VERSION/'\\\"${latest_commit_time}\\\"'/g' libimobiledevice-glue-git.spec\\nsed -i 's/REPLACEME_GLUE_TAG/'\\\"${latest_git_tag}\\\"'/g' libimobiledevice-glue-git.spec\\n\\n# Create output folder and move libimobiledevice-glue-git.spec and source tarball into output folder.\\nmkdir output\\nmv libimobiledevice-glue-git.spec output/\\nmv \\\"${latest_commit_hash}\\\".tar.gz output/\\n\", \"chroot\": \"fedora-42-x86_64\", \"builddeps\": \"curl jq\", \"resultdir\": \"output/\", \"tmp\": \"tmpmai1yb26\", \"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/libimobiledevice-git--fb8b2b0a-2b10-43b7-9f4c-a0647b6470b6", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/dirextric/libimobiledevice-git", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/dirextric/libimobiledevice-git", "result_dir": "09264166", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9264166, "mockchain_macros": { "copr_username": "dirextric", "copr_projectname": "libimobiledevice-git", "vendor": "Fedora Project COPR (dirextric/libimobiledevice-git)" } } ] } [2025-07-10 22:44:29,084][ INFO][PID:1588622] Sending fedora-messaging bus message in build.start [2025-07-10 22:44:29,746][ INFO][PID:1588622] Sending fedora-messaging bus message in chroot.start [2025-07-10 22:44:29,771][ INFO][PID:1588622] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9264166 --detached [2025-07-10 22:44:30,107][ INFO][PID:1588622] Downloading the builder-live.log file, attempt 1 [2025-07-10 22:44:30,109][ INFO][PID:1588622] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@34.238.51.238 copr-rpmbuild-log [2025-07-10 22:44:35,116][ INFO][PID:1588622] Periodic builder liveness probe: alive [2025-07-10 22:44:35,117][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:40,118][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:45,120][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:50,122][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:44:55,123][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:45:00,124][ INFO][PID:1588622] Checking for cancel request [2025-07-10 22:45:02,954][ INFO][PID:1588622] Downloading results from builder [2025-07-10 22:45:02,954][ INFO][PID:1588622] rsyncing of mockbuilder@34.238.51.238:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166 started [2025-07-10 22:45:02,955][ INFO][PID:1588622] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@34.238.51.238:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166/ &> /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166/build-09264166.rsync.log [2025-07-10 22:45:03,175][ INFO][PID:1588622] rsyncing finished. [2025-07-10 22:45:03,176][ INFO][PID:1588622] Releasing VM back to pool [2025-07-10 22:45:03,186][ INFO][PID:1588622] Searching for 'success' file in resultdir [2025-07-10 22:45:03,187][ INFO][PID:1588622] Getting build details [2025-07-10 22:45:03,187][ INFO][PID:1588622] Retrieving SRPM info from /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166 [2025-07-10 22:45:03,188][ INFO][PID:1588622] SRPM URL: https://download.copr.fedorainfracloud.org/results/dirextric/libimobiledevice-git/srpm-builds/09264166/libimobiledevice-glue-git-20250710T224229Z-1.src.rpm [2025-07-10 22:45:03,189][ INFO][PID:1588622] build details: {'srpm_url': 'https://download.copr.fedorainfracloud.org/results/dirextric/libimobiledevice-git/srpm-builds/09264166/libimobiledevice-glue-git-20250710T224229Z-1.src.rpm', 'pkg_name': 'libimobiledevice-glue-git', 'pkg_version': '20250710T224229Z-1'} [2025-07-10 22:45:03,189][ INFO][PID:1588622] Finished build: id=9264166 failed=False timeout=108000 destdir=/var/lib/copr/public_html/results/dirextric/libimobiledevice-git chroot=srpm-builds [2025-07-10 22:45:03,191][ INFO][PID:1588622] Worker succeeded build, took 34.12798023223877 [2025-07-10 22:45:03,192][ INFO][PID:1588622] 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": "libimobiledevice-git", "project_dirname": "libimobiledevice-git", "submitter": null, "ended_on": 1752187503.1915925, "started_on": 1752187469.0636122, "submitted_on": null, "status": 1, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9264166", "build_id": 9264166, "package_name": "libimobiledevice-glue-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/libimobiledevice/libimobiledevice-glue/commits\\\" | jq -r .[0].sha)\\nlatest_commit_time=$(date --date=\\\"$(curl -s \\\"https://api.github.com/repos/libimobiledevice/libimobiledevice-glue/commits\\\" | jq -r .[0].commit.committer.date)\\\" --utc +%Y%m%dT%H%M%SZ)\\n\\n# Get latest tag name.\\ngraphql_auth=\\\"Authorization: bearer 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\\\"\\ngraphql_query='{ \\\"query\\\": \\\"query { repository(owner: \\\\\\\"libimobiledevice\\\\\\\", name: \\\\\\\"libimobiledevice-glue\\\\\\\") { refs(refPrefix: \\\\\\\"refs/tags/\\\\\\\", first: 1, orderBy: {field: TAG_COMMIT_DATE, direction: DESC}) { edges { node { name } } } } }\\\" }'\\nlatest_git_tag=$(curl -s -H \\\"${graphql_auth}\\\" -X POST -d \\\"${graphql_query}\\\" https://api.github.com/graphql | jq -r .data.repository.refs.edges[0].node.name)\\n\\n# Get libimobiledevice-glue-git.spec and source tarballs.\\ncurl -JLOsS \\\"https://gitlab.com/dirextric/libimobiledevice-data/-/raw/master/libimobiledevice-glue-git.spec\\\"\\ncurl -LOsS \\\"https://github.com/libimobiledevice/libimobiledevice-glue/archive/${latest_commit_hash}.tar.gz\\\"\\n\\n# Populate libimobiledevice-glue-git.spec with latest commit and tag values.\\nsed -i 's/REPLACEME_GLUE_REVISION/'\\\"${latest_commit_hash}\\\"'/g' libimobiledevice-glue-git.spec\\nsed -i 's/REPLACEME_GLUE_VERSION/'\\\"${latest_commit_time}\\\"'/g' libimobiledevice-glue-git.spec\\nsed -i 's/REPLACEME_GLUE_TAG/'\\\"${latest_git_tag}\\\"'/g' libimobiledevice-glue-git.spec\\n\\n# Create output folder and move libimobiledevice-glue-git.spec and source tarball into output folder.\\nmkdir output\\nmv libimobiledevice-glue-git.spec output/\\nmv \\\"${latest_commit_hash}\\\".tar.gz output/\\n\", \"chroot\": \"fedora-42-x86_64\", \"builddeps\": \"curl jq\", \"resultdir\": \"output/\", \"tmp\": \"tmpmai1yb26\", \"hook_data\": true}", "pkg_name": "libimobiledevice-glue-git", "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": "https://download.copr.fedorainfracloud.org/results/dirextric/libimobiledevice-git/srpm-builds/09264166/libimobiledevice-glue-git-20250710T224229Z-1.src.rpm", "uses_devel_repo": null, "sandbox": "dirextric/libimobiledevice-git--fb8b2b0a-2b10-43b7-9f4c-a0647b6470b6", "results": { "name": "libimobiledevice-glue-git", "epoch": null, "version": "20250710T224229Z", "release": "1", "exclusivearch": [], "excludearch": [] }, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": true, "destdir": "/var/lib/copr/public_html/results/dirextric/libimobiledevice-git", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/dirextric/libimobiledevice-git", "result_dir": "09264166", "built_packages": "", "tags": [ "arch_x86_64" ], "pkg_version": "20250710T224229Z-1", "id": 9264166, "mockchain_macros": { "copr_username": "dirextric", "copr_projectname": "libimobiledevice-git", "vendor": "Fedora Project COPR (dirextric/libimobiledevice-git)" } } ] } [2025-07-10 22:45:03,224][ INFO][PID:1588622] Sending fedora-messaging bus message in build.end [2025-07-10 22:45:03,250][ INFO][PID:1588622] Compressing /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166/builder-live.log by gzip [2025-07-10 22:45:03,252][ INFO][PID:1588622] Running command 'gzip /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166/builder-live.log' as PID 1604760 [2025-07-10 22:45:03,257][ INFO][PID:1588622] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166/builder-live.log) [2025-07-10 22:45:03,257][ INFO][PID:1588622] Compressing /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166/backend.log by gzip [2025-07-10 22:45:03,259][ INFO][PID:1588622] Running command 'gzip /var/lib/copr/public_html/results/dirextric/libimobiledevice-git/srpm-builds/09264166/backend.log' as PID 1604762