[2025-11-11 12:12:07,048][ INFO][PID:1294796] Marking build as starting [2025-11-11 12:12:07,074][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:07,076][ INFO][PID:1294796] VM allocation process starts [2025-11-11 12:12:07,093][ INFO][PID:1294796] Trying to allocate VM: ResallocHost, ticket_id=6125788, requested_tags=['copr_builder', 'arch_x86_64'] [2025-11-11 12:12:12,105][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:13,205][ INFO][PID:1294796] Allocated host ResallocHost, ticket_id=6125788, hostname=13.220.172.226, name=aws_x86_64_normalreserved_prod_07938119_20251111_121036, requested_tags=['copr_builder', 'arch_x86_64'] [2025-11-11 12:12:13,206][ INFO][PID:1294796] Allocating ssh connection to builder [2025-11-11 12:12:13,206][ INFO][PID:1294796] Checking that builder machine is OK [2025-11-11 12:12:13,574][ INFO][PID:1294796] Running remote command: copr-builder-ready srpm-builds [2025-11-11 12:12:13,821][ INFO][PID:1294796] Red Hat subscription not needed for srpm-builds Builder is ready to be used [2025-11-11 12:12:13,821][ INFO][PID:1294796] Filling build.info file with builder info [2025-11-11 12:12:13,827][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:13,830][ INFO][PID:1294796] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "networkmanager", "project_name": "NetworkManager-libreswan-next", "project_dirname": "NetworkManager-libreswan-next", "submitter": "networkmanager", "ended_on": null, "started_on": 1762863133.8299153, "submitted_on": null, "status": 3, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9786553", "build_id": 9786553, "package_name": null, "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#! /usr/bin/bash\\n\\n#!/bin/bash\\n# Enable command tracing (set -x) and immediate exit on error (set -e)\\nset -xe \\n\\n# --- Configuration ---\\nREPO_URL=\\\"https://gitlab.gnome.org/GNOME/NetworkManager-libreswan.git\\\"\\nSPEC_URL=\\\"https://src.fedoraproject.org/rpms/NetworkManager-libreswan/raw/main/f/NetworkManager-libreswan.spec\\\"\\nSPEC_FILE=\\\"NetworkManager-libreswan.spec\\\"\\n\\n# --- Workspace Setup ---\\necho \\\"--- STEP: Setting up build workspace ---\\\"\\nWORK_DIR=$(mktemp -d)\\ntrap \\\"rm -rf $WORK_DIR\\\" EXIT\\nOUTPUT_DIR=\\\"$WORK_DIR/output\\\"\\nmkdir -p \\\"$OUTPUT_DIR\\\"\\n\\n# --- 1. Clone Repository ---\\necho \\\"--- STEP: Cloning repository and changing directory ---\\\"\\nREPO_CLONE_PATH=\\\"$WORK_DIR/repo\\\"\\ngit clone $REPO_URL \\\"$REPO_CLONE_PATH\\\"\\ncd \\\"$REPO_CLONE_PATH\\\"\\n\\n# --- 2. Get Custom Versioning Info ---\\necho \\\"--- STEP: Calculating custom versioning ---\\\"\\n# Base version (e.g., 1.2.28)\\nGIT_DESCRIBE=$(git describe --tags --long 2>/dev/null || echo \\\"0.0.0-0-g$(git rev-parse --short HEAD)\\\")\\nVERSION=$(echo \\\"$GIT_DESCRIBE\\\" | sed -r 's/([0-9]+\\\\.[0-9]+\\\\.[0-9]+).*/\\\\1/')\\n# Commit count (e.g., 763)\\nCOMMIT_COUNT=$(git rev-list --count HEAD)\\n# Short commit ID (e.g., dd28708)\\nSHORT_COMMIT=$(git rev-parse --short HEAD)\\n\\n# Define the custom Release format: .copr.\\nRELEASE_FORMAT=\\\"$COMMIT_COUNT.copr.$SHORT_COMMIT\\\"\\necho \\\"Calculated Version: $VERSION, Release: $RELEASE_FORMAT\\\"\\n\\n# --- 3. Download Spec File ---\\necho \\\"--- STEP: Downloading spec file ---\\\"\\ncurl -sSL \\\"$SPEC_URL\\\" -o \\\"$SPEC_FILE\\\"\\nif [ $? -ne 0 ]; then\\n echo \\\"ERROR: Failed to download the spec file. Aborting build.\\\"\\n exit 1\\nfi\\n\\n# --- 4. Prepare Directories for rpmbuild ---\\necho \\\"--- STEP: Creating mandatory SOURCES directory for rpmbuild ---\\\"\\nmkdir -p ./SOURCES\\n\\n# --- 5. FIX: Patch Source0 to match the file we create (.tar.gz) ---\\necho \\\"--- FIX: Patching spec file to use .tar.gz extension ---\\\"\\n# Change Source0 in specu from .tar.xz over to .tar.gz\\nsed -i 's/\\\\.tar\\\\.xz/\\\\.tar\\\\.gz/g' \\\"$SPEC_FILE\\\"\\n\\n# --- 6. Create Source Tarball ---\\necho \\\"--- STEP: Creating source tarball (.tar.gz) and placing it into SOURCES ---\\\"\\nRELEASE_NAME=\\\"NetworkManager-libreswan-$VERSION\\\"\\ngit archive --format=tar.gz --prefix=$RELEASE_NAME/ HEAD -o \\\"./SOURCES/$RELEASE_NAME.tar.gz\\\"\\n\\n# --- 7. Update Spec File Fields ---\\necho \\\"--- STEP: Patching Version and Release fields ---\\\"\\nSPEC_PATH_TARGET=\\\"$SPEC_FILE\\\" \\nsed -i \\\"s/^Version:.*/Version: $VERSION/\\\" \\\"$SPEC_PATH_TARGET\\\"\\nsed -i \\\"s/^Release:.*/Release: $RELEASE_FORMAT%{?dist}/\\\" \\\"$SPEC_PATH_TARGET\\\"\\necho \\\"INFO: Spec file patched.\\\"\\n\\n# --- 8. Create Source RPM (SRPM) ---\\necho \\\"--- STEP: Creating Source RPM ---\\\"\\nrpmbuild --define \\\"_topdir $(pwd)\\\" -bs \\\"$SPEC_PATH_TARGET\\\"\\n\\n# --- 9. Move SRPM to expected output location ---\\necho \\\"--- STEP: Finalizing SRPM output ---\\\"\\nSRPM_FILE=$(find \\\"./SRPMS\\\" -name \\\"NetworkManager-libreswan-*.src.rpm\\\" -print -quit)\\n\\nif [[ -f \\\"$SRPM_FILE\\\" ]]; then\\n echo \\\"INFO: SRPM found: $SRPM_FILE\\\"\\n cp \\\"$SRPM_FILE\\\" \\\"$OUTPUT_DIR/\\\"\\nelse\\n echo \\\"ERROR: Final SRPM file was not found.\\\"\\n exit 1\\nfi\\n\", \"chroot\": \"fedora-43-x86_64\", \"builddeps\": \"git rpm-build curl which sed make tar\", \"resultdir\": \"\", \"repos\": \"\"}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "networkmanager/NetworkManager-libreswan-next--networkmanager", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": false, "destdir": "/var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/networkmanager/NetworkManager-libreswan-next", "result_dir": "09786553", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9786553, "mockchain_macros": { "copr_username": "networkmanager", "copr_projectname": "NetworkManager-libreswan-next", "vendor": "Fedora Project COPR (networkmanager/NetworkManager-libreswan-next)" } } ] } [2025-11-11 12:12:13,876][ INFO][PID:1294796] Sending fedora-messaging bus message in build.start [2025-11-11 12:12:15,668][ INFO][PID:1294796] Sending fedora-messaging bus message in chroot.start [2025-11-11 12:12:15,778][ INFO][PID:1294796] Starting remote build: copr-rpmbuild --verbose --drop-resultdir --srpm --task-url https://copr.fedorainfracloud.org/backend/get-srpm-build-task/9786553 --detached [2025-11-11 12:12:16,182][ INFO][PID:1294796] The copr-rpmbuild seems started, per: stdout: stderr: Warning: Permanently added '13.220.172.226' (ED25519) to the list of known hosts. [2025-11-11 12:12:16,186][ INFO][PID:1294796] Downloading the builder-live.log file, attempt 1 [2025-11-11 12:12:16,192][ INFO][PID:1294796] Popen command started: ssh -F /home/copr/.ssh/config mockbuilder@13.220.172.226 copr-rpmbuild-log [2025-11-11 12:12:21,200][ INFO][PID:1294796] Periodic builder liveness probe: alive [2025-11-11 12:12:21,204][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:26,207][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:31,210][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:36,222][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:41,224][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:46,227][ INFO][PID:1294796] Checking for cancel request [2025-11-11 12:12:50,483][ INFO][PID:1294796] Downloading results from builder [2025-11-11 12:12:50,484][ INFO][PID:1294796] rsyncing of mockbuilder@13.220.172.226:/var/lib/copr-rpmbuild/results/ to /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/09786553 started [2025-11-11 12:12:50,490][ INFO][PID:1294796] Popen command started: /usr/bin/rsync -rltDvH --chmod=D755,F644 -e 'ssh -F /home/copr/.ssh/config' mockbuilder@13.220.172.226:/var/lib/copr-rpmbuild/results/ /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/09786553/ &> /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/09786553/build-09786553.rsync.log [2025-11-11 12:12:50,730][ INFO][PID:1294796] rsyncing finished. [2025-11-11 12:12:50,733][ INFO][PID:1294796] Releasing VM back to pool [2025-11-11 12:12:50,761][ INFO][PID:1294796] Searching for 'success' file in resultdir [2025-11-11 12:12:50,762][ ERROR][PID:1294796] Build failed: Backend process error: No success file => build failure [2025-11-11 12:12:50,763][ INFO][PID:1294796] Finished build: id=9786553 failed=True timeout=108000 destdir=/var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next chroot=srpm-builds [2025-11-11 12:12:50,767][ ERROR][PID:1294796] Backend process error: No success file => build failure [2025-11-11 12:12:50,769][ INFO][PID:1294796] Worker failed build, took 36.93913006782532 [2025-11-11 12:12:50,769][ INFO][PID:1294796] Sending build state back to frontend: { "builds": [ { "timeout": 108000, "frontend_base_url": "https://copr.fedorainfracloud.org", "memory_reqs": null, "enable_net": true, "project_owner": "networkmanager", "project_name": "NetworkManager-libreswan-next", "project_dirname": "NetworkManager-libreswan-next", "submitter": "networkmanager", "ended_on": 1762863170.7690454, "started_on": 1762863133.8299153, "submitted_on": null, "status": 0, "chroot": "srpm-builds", "arch": "x86_64", "buildroot_pkgs": null, "task_id": "9786553", "build_id": 9786553, "package_name": null, "package_version": null, "git_repo": null, "git_hash": null, "git_branch": null, "source_type": 9, "source_json": "{\"script\": \"#! /usr/bin/bash\\n\\n#!/bin/bash\\n# Enable command tracing (set -x) and immediate exit on error (set -e)\\nset -xe \\n\\n# --- Configuration ---\\nREPO_URL=\\\"https://gitlab.gnome.org/GNOME/NetworkManager-libreswan.git\\\"\\nSPEC_URL=\\\"https://src.fedoraproject.org/rpms/NetworkManager-libreswan/raw/main/f/NetworkManager-libreswan.spec\\\"\\nSPEC_FILE=\\\"NetworkManager-libreswan.spec\\\"\\n\\n# --- Workspace Setup ---\\necho \\\"--- STEP: Setting up build workspace ---\\\"\\nWORK_DIR=$(mktemp -d)\\ntrap \\\"rm -rf $WORK_DIR\\\" EXIT\\nOUTPUT_DIR=\\\"$WORK_DIR/output\\\"\\nmkdir -p \\\"$OUTPUT_DIR\\\"\\n\\n# --- 1. Clone Repository ---\\necho \\\"--- STEP: Cloning repository and changing directory ---\\\"\\nREPO_CLONE_PATH=\\\"$WORK_DIR/repo\\\"\\ngit clone $REPO_URL \\\"$REPO_CLONE_PATH\\\"\\ncd \\\"$REPO_CLONE_PATH\\\"\\n\\n# --- 2. Get Custom Versioning Info ---\\necho \\\"--- STEP: Calculating custom versioning ---\\\"\\n# Base version (e.g., 1.2.28)\\nGIT_DESCRIBE=$(git describe --tags --long 2>/dev/null || echo \\\"0.0.0-0-g$(git rev-parse --short HEAD)\\\")\\nVERSION=$(echo \\\"$GIT_DESCRIBE\\\" | sed -r 's/([0-9]+\\\\.[0-9]+\\\\.[0-9]+).*/\\\\1/')\\n# Commit count (e.g., 763)\\nCOMMIT_COUNT=$(git rev-list --count HEAD)\\n# Short commit ID (e.g., dd28708)\\nSHORT_COMMIT=$(git rev-parse --short HEAD)\\n\\n# Define the custom Release format: .copr.\\nRELEASE_FORMAT=\\\"$COMMIT_COUNT.copr.$SHORT_COMMIT\\\"\\necho \\\"Calculated Version: $VERSION, Release: $RELEASE_FORMAT\\\"\\n\\n# --- 3. Download Spec File ---\\necho \\\"--- STEP: Downloading spec file ---\\\"\\ncurl -sSL \\\"$SPEC_URL\\\" -o \\\"$SPEC_FILE\\\"\\nif [ $? -ne 0 ]; then\\n echo \\\"ERROR: Failed to download the spec file. Aborting build.\\\"\\n exit 1\\nfi\\n\\n# --- 4. Prepare Directories for rpmbuild ---\\necho \\\"--- STEP: Creating mandatory SOURCES directory for rpmbuild ---\\\"\\nmkdir -p ./SOURCES\\n\\n# --- 5. FIX: Patch Source0 to match the file we create (.tar.gz) ---\\necho \\\"--- FIX: Patching spec file to use .tar.gz extension ---\\\"\\n# Change Source0 in specu from .tar.xz over to .tar.gz\\nsed -i 's/\\\\.tar\\\\.xz/\\\\.tar\\\\.gz/g' \\\"$SPEC_FILE\\\"\\n\\n# --- 6. Create Source Tarball ---\\necho \\\"--- STEP: Creating source tarball (.tar.gz) and placing it into SOURCES ---\\\"\\nRELEASE_NAME=\\\"NetworkManager-libreswan-$VERSION\\\"\\ngit archive --format=tar.gz --prefix=$RELEASE_NAME/ HEAD -o \\\"./SOURCES/$RELEASE_NAME.tar.gz\\\"\\n\\n# --- 7. Update Spec File Fields ---\\necho \\\"--- STEP: Patching Version and Release fields ---\\\"\\nSPEC_PATH_TARGET=\\\"$SPEC_FILE\\\" \\nsed -i \\\"s/^Version:.*/Version: $VERSION/\\\" \\\"$SPEC_PATH_TARGET\\\"\\nsed -i \\\"s/^Release:.*/Release: $RELEASE_FORMAT%{?dist}/\\\" \\\"$SPEC_PATH_TARGET\\\"\\necho \\\"INFO: Spec file patched.\\\"\\n\\n# --- 8. Create Source RPM (SRPM) ---\\necho \\\"--- STEP: Creating Source RPM ---\\\"\\nrpmbuild --define \\\"_topdir $(pwd)\\\" -bs \\\"$SPEC_PATH_TARGET\\\"\\n\\n# --- 9. Move SRPM to expected output location ---\\necho \\\"--- STEP: Finalizing SRPM output ---\\\"\\nSRPM_FILE=$(find \\\"./SRPMS\\\" -name \\\"NetworkManager-libreswan-*.src.rpm\\\" -print -quit)\\n\\nif [[ -f \\\"$SRPM_FILE\\\" ]]; then\\n echo \\\"INFO: SRPM found: $SRPM_FILE\\\"\\n cp \\\"$SRPM_FILE\\\" \\\"$OUTPUT_DIR/\\\"\\nelse\\n echo \\\"ERROR: Final SRPM file was not found.\\\"\\n exit 1\\nfi\\n\", \"chroot\": \"fedora-43-x86_64\", \"builddeps\": \"git rpm-build curl which sed make tar\", \"resultdir\": \"\", \"repos\": \"\"}", "pkg_name": null, "pkg_main_version": null, "pkg_epoch": null, "pkg_release": null, "srpm_url": null, "uses_devel_repo": null, "sandbox": "networkmanager/NetworkManager-libreswan-next--networkmanager", "results": null, "appstream": false, "allow_user_ssh": null, "ssh_public_keys": null, "storage": null, "repos": [], "background": false, "destdir": "/var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next", "results_repo_url": "https://download.copr.fedorainfracloud.org/results/networkmanager/NetworkManager-libreswan-next", "result_dir": "09786553", "built_packages": "", "tags": [ "arch_x86_64" ], "id": 9786553, "mockchain_macros": { "copr_username": "networkmanager", "copr_projectname": "NetworkManager-libreswan-next", "vendor": "Fedora Project COPR (networkmanager/NetworkManager-libreswan-next)" } } ] } [2025-11-11 12:12:50,804][ INFO][PID:1294796] Sending fedora-messaging bus message in build.end [2025-11-11 12:12:50,857][ INFO][PID:1294796] Compressing /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/09786553/builder-live.log by gzip [2025-11-11 12:12:50,864][ INFO][PID:1294796] Running command 'gzip /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/09786553/builder-live.log' as PID 1302483 [2025-11-11 12:12:50,926][ INFO][PID:1294796] Finished after 0 seconds with exit code 0 (gzip /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/09786553/builder-live.log) [2025-11-11 12:12:50,927][ INFO][PID:1294796] Compressing /var/lib/copr/public_html/results/networkmanager/NetworkManager-libreswan-next/srpm-builds/09786553/backend.log by gzip