libvirt List Archives
Sign In
Sign Up
Manage this list
Sign In
Sign Up
×
Keyboard Shortcuts
Thread View
j
: Next unread message
k
: Previous unread message
j a
: Jump to all threads
j l
: Jump to MailingList overview
CI
Thread
Start a new thread
Download
Threads by
month
----- 2026 -----
March
February
January
----- 2025 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2024 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2023 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2022 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2021 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2020 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2019 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2018 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2017 -----
December
November
October
September
August
July
June
May
April
March
February
January
----- 2016 -----
December
November
October
September
August
July
ci@lists.libvirt.org
2 participants
9449 discussions
libvirt | Failed pipeline for master | 2bcf14ea
by GitLab
15 May '24
15 May '24
Pipeline #1291235628 has failed! Project: libvirt (
https://gitlab.com/libvirt/libvirt
) Branch: master (
https://gitlab.com/libvirt/libvirt/-/commits/master
) Commit: 2bcf14ea (
https://gitlab.com/libvirt/libvirt/-/commit/2bcf14eabf02063fc7850a6b578f9bd…
) Commit Message: docs: formatsnapshot: add docs for snapshotDele... Commit Author: Abhiram Tilak Committed by: Peter Krempa (
https://gitlab.com/pipo.sk
) Pipeline #1291235628 (
https://gitlab.com/libvirt/libvirt/-/pipelines/1291235628
) triggered by Daniel P_ Berrangé (
https://gitlab.com/berrange
) had 1 failed job. Job #6854342023 (
https://gitlab.com/libvirt/libvirt/-/jobs/6854342023/raw
) Stage: builds Name: aarch64-macos-14 -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
New Defects reported by Coverity Scan for libvirt
by scan-admin@coverity.com
15 May '24
15 May '24
Hi, Please find the latest report on new defect(s) introduced to libvirt found with Coverity Scan. 15 new defect(s) introduced to libvirt found with Coverity Scan. New defect(s) Reported-by: Coverity Scan Showing 15 of 15 defect(s) ** CID 460819: API usage errors (VARARGS) /tests/qemunbdkittest.c: 168 in testInfoSetArgs() ________________________________________________________________________________________________________ *** CID 460819: API usage errors (VARARGS) /tests/qemunbdkittest.c: 168 in testInfoSetArgs() 162 break; 163 case NBDKIT_ARG_END: 164 default: 165 break; 166 } 167 } >>> CID 460819: API usage errors (VARARGS) >>> "va_end" was not called for "argptr". 168 } 169 170 171 static int 172 testNbdkit(const void *data) 173 { ** CID 460818: Memory - corruptions (OVERRUN) ________________________________________________________________________________________________________ *** CID 460818: Memory - corruptions (OVERRUN) /tests/qemunbdkittest.c: 83 in virSecretGetSecretString() 77 char uuidstr[VIR_UUID_BUFLEN]; 78 const char *secretname = NULL; 79 char *tmp = NULL; 80 81 switch (seclookupdef->type) { 82 case VIR_SECRET_LOOKUP_TYPE_UUID: >>> CID 460818: Memory - corruptions (OVERRUN) >>> Overrunning array "uuidstr" of 16 bytes by passing it to a function which accesses it at byte offset 36. 83 virUUIDFormat(seclookupdef->u.uuid, uuidstr); 84 secretname = uuidstr; 85 break; 86 case VIR_SECRET_LOOKUP_TYPE_USAGE: 87 secretname = seclookupdef->u.usage; 88 break; ** CID 460817: (NULL_RETURNS) /src/qemu/qemu_domain.c: 12151 in qemuDomainNamePathsCleanup() /src/qemu/qemu_domain.c: 12144 in qemuDomainNamePathsCleanup() ________________________________________________________________________________________________________ *** CID 460817: (NULL_RETURNS) /src/qemu/qemu_domain.c: 12151 in qemuDomainNamePathsCleanup() 12145 unlink(cfg_file) < 0) { 12146 virReportSystemError(errno, _("Failed to unlink '%1$s'"), cfg_file); 12147 if (!bestEffort) 12148 return -1; 12149 } 12150 >>> CID 460817: (NULL_RETURNS) >>> Dereferencing a pointer that might be "NULL" "autostart_link" when calling "virFileIsLink". (The dereference is assumed on the basis of the "nonnull" parameter attribute.) 12151 if (virFileIsLink(autostart_link) == 1 && 12152 unlink(autostart_link) < 0) { 12153 virReportSystemError(errno, _("Failed to unlink '%1$s'"), autostart_link); 12154 if (!bestEffort) 12155 return -1; 12156 } /src/qemu/qemu_domain.c: 12144 in qemuDomainNamePathsCleanup() 12138 12139 cfg_file = virDomainConfigFile(cfg->configDir, name); 12140 autostart_link = virDomainConfigFile(cfg->autostartDir, name); 12141 snap_dir = g_strdup_printf("%s/%s", cfg->snapshotDir, name); 12142 chk_dir = g_strdup_printf("%s/%s", cfg->checkpointDir, name); 12143 >>> CID 460817: (NULL_RETURNS) >>> Dereferencing a pointer that might be "NULL" "cfg_file" when calling "virFileExists". (The dereference is assumed on the basis of the "nonnull" parameter attribute.) 12144 if (virFileExists(cfg_file) && 12145 unlink(cfg_file) < 0) { 12146 virReportSystemError(errno, _("Failed to unlink '%1$s'"), cfg_file); 12147 if (!bestEffort) 12148 return -1; 12149 } ** CID 460816: Memory - corruptions (USE_AFTER_FREE) ________________________________________________________________________________________________________ *** CID 460816: Memory - corruptions (USE_AFTER_FREE) /src/qemu/qemu_driver.c: 4121 in qemuProcessEventHandler() 4115 processNbdkitExitedEvent(vm, processEvent->data); 4116 break; 4117 case QEMU_PROCESS_EVENT_LAST: 4118 break; 4119 } 4120 >>> CID 460816: Memory - corruptions (USE_AFTER_FREE) >>> Calling "virDomainObjEndAPI" frees pointer "vm" which has already been freed. 4121 virDomainObjEndAPI(&vm); 4122 qemuProcessEventFree(processEvent); 4123 } 4124 4125 4126 static int ** CID 460815: Memory - corruptions (USE_AFTER_FREE) ________________________________________________________________________________________________________ *** CID 460815: Memory - corruptions (USE_AFTER_FREE) /src/qemu/qemu_blockjob.c: 386 in qemuBlockJobDiskNewBackup() 380 job->data.backup.bitmap = g_strdup(bitmap); 381 job->data.backup.store = virObjectRef(store); 382 383 /* backup jobs are usually started in bulk by transaction so the caller 384 * shall save the status XML */ 385 if (qemuBlockJobRegister(job, vm, disk, false) < 0) >>> CID 460815: Memory - corruptions (USE_AFTER_FREE) >>> Calling "glib_autoptr_cleanup_qemuBlockJobData" frees pointer "job" which has already been freed. 386 return NULL; 387 388 return g_steal_pointer(&job); 389 } 390 391 ** CID 460814: Insecure data handling (TAINTED_SCALAR) /src/cpu/cpu_x86.c: 3441 in virCPUx86DataGetHost() ________________________________________________________________________________________________________ *** CID 460814: Insecure data handling (TAINTED_SCALAR) /src/cpu/cpu_x86.c: 3441 in virCPUx86DataGetHost() 3435 3436 if ((kvm_cpuid = virHostCPUGetCPUID()) == NULL) 3437 return NULL; 3438 3439 cpuid = virCPUDataNew(virArchFromHost()); 3440 cpuid->data.x86.len = 0; >>> CID 460814: Insecure data handling (TAINTED_SCALAR) >>> Passing tainted expression "__n" to "g_malloc0_n", which uses it as an allocation size. 3441 cpuid->data.x86.items = g_new0(virCPUx86DataItem, kvm_cpuid->nent); 3442 3443 for (i = 0; i < kvm_cpuid->nent; ++i) { 3444 virCPUx86DataItem *item = &cpuid->data.x86.items[cpuid->data.x86.len]; 3445 item->type = VIR_CPU_X86_DATA_CPUID; 3446 item->data.cpuid.eax_in = kvm_cpuid->entries[i].function; ** CID 460813: Memory - illegal accesses (USE_AFTER_FREE) /src/qemu/qemu_process.c: 9723 in qemuProcessHandleNbdkitExit() ________________________________________________________________________________________________________ *** CID 460813: Memory - illegal accesses (USE_AFTER_FREE) /src/qemu/qemu_process.c: 9723 in qemuProcessHandleNbdkitExit() 9717 qemuProcessHandleNbdkitExit(qemuNbdkitProcess *nbdkit, 9718 virDomainObj *vm) 9719 { 9720 virObjectLock(vm); 9721 VIR_DEBUG("nbdkit process %i died", nbdkit->pid); 9722 qemuProcessEventSubmit(vm, QEMU_PROCESS_EVENT_NBDKIT_EXITED, 0, 0, nbdkit); >>> CID 460813: Memory - illegal accesses (USE_AFTER_FREE) >>> Calling "virObjectUnlock" dereferences freed pointer "vm". (The dereference is assumed on the basis of the "nonnull" parameter attribute.) 9723 virObjectUnlock(vm); ** CID 460812: Memory - corruptions (USE_AFTER_FREE) ________________________________________________________________________________________________________ *** CID 460812: Memory - corruptions (USE_AFTER_FREE) /src/qemu/qemu_blockjob.c: 359 in qemuBlockJobDiskNewCopy() 353 if (shallow && !reuse) 354 job->data.copy.shallownew = true; 355 356 job->jobflags = jobflags; 357 358 if (qemuBlockJobRegister(job, vm, disk, true) < 0) >>> CID 460812: Memory - corruptions (USE_AFTER_FREE) >>> Calling "glib_autoptr_cleanup_qemuBlockJobData" frees pointer "job" which has already been freed. 359 return NULL; 360 361 return g_steal_pointer(&job); 362 } 363 364 ** CID 460811: Insecure data handling (TAINTED_STRING) ________________________________________________________________________________________________________ *** CID 460811: Insecure data handling (TAINTED_STRING) /tests/qemunbdkittest.c: 318 in main() 312 cleanup: 313 qemuTestDriverFree(&driver); 314 315 return ret == 0 ? EXIT_SUCCESS : EXIT_FAILURE; 316 } 317 >>> CID 460811: Insecure data handling (TAINTED_STRING) >>> Passing tainted string "**argv" to "virTestMain", which cannot accept tainted data. ** CID 460810: Memory - corruptions (USE_AFTER_FREE) ________________________________________________________________________________________________________ *** CID 460810: Memory - corruptions (USE_AFTER_FREE) /src/qemu/qemu_process.c: 9292 in qemuProcessReconnect() 9286 9287 cleanup: 9288 if (jobStarted) 9289 virDomainObjEndJob(obj); 9290 if (!virDomainObjIsActive(obj)) 9291 qemuDomainRemoveInactive(driver, obj, 0, false); >>> CID 460810: Memory - corruptions (USE_AFTER_FREE) >>> Calling "virDomainObjEndAPI" frees pointer "obj" which has already been freed. 9292 virDomainObjEndAPI(&obj); 9293 virIdentitySetCurrent(NULL); 9294 return; 9295 9296 error: 9297 if (virDomainObjIsActive(obj)) { ** CID 460809: Memory - illegal accesses (USE_AFTER_FREE) /src/qemu/qemu_process.c: 1378 in qemuProcessHandleNetdevStreamDisconnected() ________________________________________________________________________________________________________ *** CID 460809: Memory - illegal accesses (USE_AFTER_FREE) /src/qemu/qemu_process.c: 1378 in qemuProcessHandleNetdevStreamDisconnected() 1372 VIR_DEBUG("Device %s Netdev Stream Disconnected in domain %p %s", 1373 devAlias, vm, vm->def->name); 1374 1375 qemuProcessEventSubmit(vm, QEMU_PROCESS_EVENT_NETDEV_STREAM_DISCONNECTED, 1376 0, 0, g_strdup(devAlias)); 1377 >>> CID 460809: Memory - illegal accesses (USE_AFTER_FREE) >>> Calling "virObjectUnlock" dereferences freed pointer "vm". (The dereference is assumed on the basis of the "nonnull" parameter attribute.) 1378 virObjectUnlock(vm); 1379 } 1380 1381 1382 static void 1383 qemuProcessHandleNicRxFilterChanged(qemuMonitor *mon G_GNUC_UNUSED, ** CID 460808: (CHECKED_RETURN) /src/ch/ch_monitor.c: 961 in virCHMonitorSaveRestoreVM() /src/ch/ch_monitor.c: 957 in virCHMonitorSaveRestoreVM() /src/ch/ch_monitor.c: 955 in virCHMonitorSaveRestoreVM() /src/ch/ch_monitor.c: 956 in virCHMonitorSaveRestoreVM() /src/ch/ch_monitor.c: 958 in virCHMonitorSaveRestoreVM() /src/ch/ch_monitor.c: 959 in virCHMonitorSaveRestoreVM() /src/ch/ch_monitor.c: 960 in virCHMonitorSaveRestoreVM() ________________________________________________________________________________________________________ *** CID 460808: (CHECKED_RETURN) /src/ch/ch_monitor.c: 961 in virCHMonitorSaveRestoreVM() 955 curl_easy_setopt(mon->handle, CURLOPT_UNIX_SOCKET_PATH, mon->socketpath); 956 curl_easy_setopt(mon->handle, CURLOPT_URL, url); 957 curl_easy_setopt(mon->handle, CURLOPT_CUSTOMREQUEST, "PUT"); 958 curl_easy_setopt(mon->handle, CURLOPT_HTTPHEADER, headers); 959 curl_easy_setopt(mon->handle, CURLOPT_POSTFIELDS, payload); 960 curl_easy_setopt(mon->handle, CURLOPT_WRITEFUNCTION, curl_callback); >>> CID 460808: (CHECKED_RETURN) >>> Calling "curl_easy_setopt(mon->handle, _curl_opt, (void *)&data)" without checking return value. This library function may fail and return an error code. 961 curl_easy_setopt(mon->handle, CURLOPT_WRITEDATA, (void *)&data); 962 963 responseCode = virCHMonitorCurlPerform(mon->handle); 964 } 965 966 if (responseCode == 200 || responseCode == 204) { /src/ch/ch_monitor.c: 957 in virCHMonitorSaveRestoreVM() 951 VIR_WITH_OBJECT_LOCK_GUARD(mon) { 952 /* reset all options of a libcurl session handle at first */ 953 curl_easy_reset(mon->handle); 954 955 curl_easy_setopt(mon->handle, CURLOPT_UNIX_SOCKET_PATH, mon->socketpath); 956 curl_easy_setopt(mon->handle, CURLOPT_URL, url); >>> CID 460808: (CHECKED_RETURN) >>> Calling "curl_easy_setopt(mon->handle, _curl_opt, "PUT")" without checking return value. This library function may fail and return an error code. 957 curl_easy_setopt(mon->handle, CURLOPT_CUSTOMREQUEST, "PUT"); 958 curl_easy_setopt(mon->handle, CURLOPT_HTTPHEADER, headers); 959 curl_easy_setopt(mon->handle, CURLOPT_POSTFIELDS, payload); 960 curl_easy_setopt(mon->handle, CURLOPT_WRITEFUNCTION, curl_callback); 961 curl_easy_setopt(mon->handle, CURLOPT_WRITEDATA, (void *)&data); 962 /src/ch/ch_monitor.c: 955 in virCHMonitorSaveRestoreVM() 949 } 950 951 VIR_WITH_OBJECT_LOCK_GUARD(mon) { 952 /* reset all options of a libcurl session handle at first */ 953 curl_easy_reset(mon->handle); 954 >>> CID 460808: (CHECKED_RETURN) >>> Calling "curl_easy_setopt(mon->handle, _curl_opt, mon->socketpath)" without checking return value. This library function may fail and return an error code. 955 curl_easy_setopt(mon->handle, CURLOPT_UNIX_SOCKET_PATH, mon->socketpath); 956 curl_easy_setopt(mon->handle, CURLOPT_URL, url); 957 curl_easy_setopt(mon->handle, CURLOPT_CUSTOMREQUEST, "PUT"); 958 curl_easy_setopt(mon->handle, CURLOPT_HTTPHEADER, headers); 959 curl_easy_setopt(mon->handle, CURLOPT_POSTFIELDS, payload); 960 curl_easy_setopt(mon->handle, CURLOPT_WRITEFUNCTION, curl_callback); /src/ch/ch_monitor.c: 956 in virCHMonitorSaveRestoreVM() 950 951 VIR_WITH_OBJECT_LOCK_GUARD(mon) { 952 /* reset all options of a libcurl session handle at first */ 953 curl_easy_reset(mon->handle); 954 955 curl_easy_setopt(mon->handle, CURLOPT_UNIX_SOCKET_PATH, mon->socketpath); >>> CID 460808: (CHECKED_RETURN) >>> Calling "curl_easy_setopt(mon->handle, _curl_opt, url)" without checking return value. This library function may fail and return an error code. 956 curl_easy_setopt(mon->handle, CURLOPT_URL, url); 957 curl_easy_setopt(mon->handle, CURLOPT_CUSTOMREQUEST, "PUT"); 958 curl_easy_setopt(mon->handle, CURLOPT_HTTPHEADER, headers); 959 curl_easy_setopt(mon->handle, CURLOPT_POSTFIELDS, payload); 960 curl_easy_setopt(mon->handle, CURLOPT_WRITEFUNCTION, curl_callback); 961 curl_easy_setopt(mon->handle, CURLOPT_WRITEDATA, (void *)&data); /src/ch/ch_monitor.c: 958 in virCHMonitorSaveRestoreVM() 952 /* reset all options of a libcurl session handle at first */ 953 curl_easy_reset(mon->handle); 954 955 curl_easy_setopt(mon->handle, CURLOPT_UNIX_SOCKET_PATH, mon->socketpath); 956 curl_easy_setopt(mon->handle, CURLOPT_URL, url); 957 curl_easy_setopt(mon->handle, CURLOPT_CUSTOMREQUEST, "PUT"); >>> CID 460808: (CHECKED_RETURN) >>> Calling "curl_easy_setopt(mon->handle, _curl_opt, headers)" without checking return value. This library function may fail and return an error code. 958 curl_easy_setopt(mon->handle, CURLOPT_HTTPHEADER, headers); 959 curl_easy_setopt(mon->handle, CURLOPT_POSTFIELDS, payload); 960 curl_easy_setopt(mon->handle, CURLOPT_WRITEFUNCTION, curl_callback); 961 curl_easy_setopt(mon->handle, CURLOPT_WRITEDATA, (void *)&data); 962 963 responseCode = virCHMonitorCurlPerform(mon->handle); /src/ch/ch_monitor.c: 959 in virCHMonitorSaveRestoreVM() 953 curl_easy_reset(mon->handle); 954 955 curl_easy_setopt(mon->handle, CURLOPT_UNIX_SOCKET_PATH, mon->socketpath); 956 curl_easy_setopt(mon->handle, CURLOPT_URL, url); 957 curl_easy_setopt(mon->handle, CURLOPT_CUSTOMREQUEST, "PUT"); 958 curl_easy_setopt(mon->handle, CURLOPT_HTTPHEADER, headers); >>> CID 460808: (CHECKED_RETURN) >>> Calling "curl_easy_setopt(mon->handle, _curl_opt, payload)" without checking return value. This library function may fail and return an error code. 959 curl_easy_setopt(mon->handle, CURLOPT_POSTFIELDS, payload); 960 curl_easy_setopt(mon->handle, CURLOPT_WRITEFUNCTION, curl_callback); 961 curl_easy_setopt(mon->handle, CURLOPT_WRITEDATA, (void *)&data); 962 963 responseCode = virCHMonitorCurlPerform(mon->handle); 964 } /src/ch/ch_monitor.c: 960 in virCHMonitorSaveRestoreVM() 954 955 curl_easy_setopt(mon->handle, CURLOPT_UNIX_SOCKET_PATH, mon->socketpath); 956 curl_easy_setopt(mon->handle, CURLOPT_URL, url); 957 curl_easy_setopt(mon->handle, CURLOPT_CUSTOMREQUEST, "PUT"); 958 curl_easy_setopt(mon->handle, CURLOPT_HTTPHEADER, headers); 959 curl_easy_setopt(mon->handle, CURLOPT_POSTFIELDS, payload); >>> CID 460808: (CHECKED_RETURN) >>> Calling "curl_easy_setopt(mon->handle, _curl_opt, curl_callback)" without checking return value. This library function may fail and return an error code. 960 curl_easy_setopt(mon->handle, CURLOPT_WRITEFUNCTION, curl_callback); 961 curl_easy_setopt(mon->handle, CURLOPT_WRITEDATA, (void *)&data); 962 963 responseCode = virCHMonitorCurlPerform(mon->handle); 964 } 965 ** CID 460807: Control flow issues (DEADCODE) /tests/qemunbdkittest.c: 163 in testInfoSetArgs() ________________________________________________________________________________________________________ *** CID 460807: Control flow issues (DEADCODE) /tests/qemunbdkittest.c: 163 in testInfoSetArgs() 157 while ((cap = va_arg(argptr, unsigned int)) < QEMU_NBDKIT_CAPS_LAST) 158 qemuNbdkitCapsSet(info->nbdkitcaps, cap); 159 break; 160 case NBDKIT_ARG_EXPECT_FAIL: 161 info->expectFail = va_arg(argptr, unsigned int); 162 break; >>> CID 460807: Control flow issues (DEADCODE) >>> Execution cannot reach this statement: "case NBDKIT_ARG_END:". 163 case NBDKIT_ARG_END: 164 default: 165 break; 166 } 167 } 168 } ** CID 460806: Memory - corruptions (USE_AFTER_FREE) ________________________________________________________________________________________________________ *** CID 460806: Memory - corruptions (USE_AFTER_FREE) /src/qemu/qemu_blockjob.c: 265 in qemuBlockJobDiskNewPull() 259 return NULL; 260 261 job->data.pull.base = base; 262 job->jobflags = jobflags; 263 264 if (qemuBlockJobRegister(job, vm, disk, true) < 0) >>> CID 460806: Memory - corruptions (USE_AFTER_FREE) >>> Calling "glib_autoptr_cleanup_qemuBlockJobData" frees pointer "job" which has already been freed. 265 return NULL; 266 267 return g_steal_pointer(&job); 268 } 269 270 ** CID 460805: Memory - corruptions (USE_AFTER_FREE) ________________________________________________________________________________________________________ *** CID 460805: Memory - corruptions (USE_AFTER_FREE) /src/qemu/qemu_blockjob.c: 300 in qemuBlockJobDiskNewCommit() 294 job->data.commit.base = base; 295 job->data.commit.deleteCommittedImages = delete_imgs; 296 job->processPending = autofinalize == VIR_TRISTATE_BOOL_NO; 297 job->jobflags = jobflags; 298 299 if (qemuBlockJobRegister(job, vm, disk, true) < 0) >>> CID 460805: Memory - corruptions (USE_AFTER_FREE) >>> Calling "glib_autoptr_cleanup_qemuBlockJobData" frees pointer "job" which has already been freed. 300 return NULL; 301 302 return g_steal_pointer(&job); 303 } 304 305 ________________________________________________________________________________________________________ To view the defects in Coverity Scan visit,
https://u15810271.ct.sendgrid.net/ls/click?upn=u001.AxU2LYlgjL6eX23u9ErQy-2…
1
0
0
0
libvirt-rust | Failed pipeline for master | 604ea02a
by GitLab
15 May '24
15 May '24
Pipeline #1291198676 has failed! Project: libvirt-rust (
https://gitlab.com/libvirt/libvirt-rust
) Branch: master (
https://gitlab.com/libvirt/libvirt-rust/-/commits/master
) Commit: 604ea02a (
https://gitlab.com/libvirt/libvirt-rust/-/commit/604ea02a95f96ed5ebb5a56f6c…
) Commit Message: ci: expand to non-x86_64, add alpine, freebsd &... Commit Author: Daniel P_ Berrangé (
https://gitlab.com/berrange
) Pipeline #1291198676 (
https://gitlab.com/libvirt/libvirt-rust/-/pipelines/1291198676
) triggered by Daniel P_ Berrangé (
https://gitlab.com/berrange
) had 1 failed job. Job #6854138203 (
https://gitlab.com/libvirt/libvirt-rust/-/jobs/6854138203/raw
) Stage: builds Name: x86_64-almalinux-8-git -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
libvirt-tck | Failed pipeline for master | fd01a50a
by GitLab
15 May '24
15 May '24
Pipeline #1291198768 has failed! Project: libvirt-tck (
https://gitlab.com/libvirt/libvirt-tck
) Branch: master (
https://gitlab.com/libvirt/libvirt-tck/-/commits/master
) Commit: fd01a50a (
https://gitlab.com/libvirt/libvirt-tck/-/commit/fd01a50ac7a427956a4ed66b366…
) Commit Message: vol-builder: Automatically add '<compat>0.10</c... Commit Author: Peter Krempa (
https://gitlab.com/pipo.sk
) Pipeline #1291198768 (
https://gitlab.com/libvirt/libvirt-tck/-/pipelines/1291198768
) triggered by Daniel P_ Berrangé (
https://gitlab.com/berrange
) had 1 failed job. Job #6854138701 (
https://gitlab.com/libvirt/libvirt-tck/-/jobs/6854138701/raw
) Stage: builds Name: x86_64-almalinux-8-prebuilt-env -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
libvirt-glib | Failed pipeline for master | e9dc4e7c
by GitLab
15 May '24
15 May '24
Pipeline #1291129907 has failed! Project: libvirt-glib (
https://gitlab.com/libvirt/libvirt-glib
) Branch: master (
https://gitlab.com/libvirt/libvirt-glib/-/commits/master
) Commit: e9dc4e7c (
https://gitlab.com/libvirt/libvirt-glib/-/commit/e9dc4e7c06c50ab74e8494a6db…
) Commit Message: Translated using Weblate (English (United Kingd... Commit Author: Andi Chandler (
https://gitlab.com/andibing
) Committed by: Weblate (
https://gitlab.com/weblate
) Pipeline #1291129907 (
https://gitlab.com/libvirt/libvirt-glib/-/pipelines/1291129907
) triggered by Daniel P_ Berrangé (
https://gitlab.com/berrange
) had 1 failed job. Job #6853788319 (
https://gitlab.com/libvirt/libvirt-glib/-/jobs/6853788319/raw
) Stage: builds Name: x86_64-almalinux-8-git-prebuilt-env -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
libvirt-console-proxy | Failed pipeline for master | 9dff734a
by GitLab
14 May '24
14 May '24
Pipeline #1290840829 has failed! Project: libvirt-console-proxy (
https://gitlab.com/libvirt/libvirt-console-proxy
) Branch: master (
https://gitlab.com/libvirt/libvirt-console-proxy/-/commits/master
) Commit: 9dff734a (
https://gitlab.com/libvirt/libvirt-console-proxy/-/commit/9dff734a85d6f4b59…
) Commit Message: ci: lcitool: Maintain project package deps list... Commit Author: Erik Skultety (
https://gitlab.com/eskultety-rh
) Pipeline #1290840829 (
https://gitlab.com/libvirt/libvirt-console-proxy/-/pipelines/1290840829
) triggered by Daniel P_ Berrangé (
https://gitlab.com/berrange
) had 1 failed job. Job #6852248014 (
https://gitlab.com/libvirt/libvirt-console-proxy/-/jobs/6852248014/raw
) Stage: builds Name: x86_64-almalinux-8-git-prebuilt-env -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
libvirt-go-xml-module | Failed pipeline for master | ef82f5f9
by GitLab
14 May '24
14 May '24
Pipeline #1290510496 has failed! Project: libvirt-go-xml-module (
https://gitlab.com/libvirt/libvirt-go-xml-module
) Branch: master (
https://gitlab.com/libvirt/libvirt-go-xml-module/-/commits/master
) Commit: ef82f5f9 (
https://gitlab.com/libvirt/libvirt-go-xml-module/-/commit/ef82f5f9d8fa1d88d…
) Commit Message: Add domain PCI controller 'memReserve' attribut... Commit Author: Daniel P_ Berrangé (
https://gitlab.com/berrange
) Pipeline #1290510496 (
https://gitlab.com/libvirt/libvirt-go-xml-module/-/pipelines/1290510496
) triggered by Daniel P_ Berrangé (
https://gitlab.com/berrange
) had 2 failed jobs. Job #6849789123 (
https://gitlab.com/libvirt/libvirt-go-xml-module/-/jobs/6849789123/raw
) Stage: build Name: go_1_11 Job #6849789127 (
https://gitlab.com/libvirt/libvirt-go-xml-module/-/jobs/6849789127/raw
) Stage: build Name: go_1_16 -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
libvirt | Successful pipeline for master | 2bcf14ea
by GitLab
14 May '24
14 May '24
Pipeline #1290306839 has passed! Project: libvirt (
https://gitlab.com/libvirt/libvirt
) Branch: master (
https://gitlab.com/libvirt/libvirt/-/commits/master
) Commit: 2bcf14ea (
https://gitlab.com/libvirt/libvirt/-/commit/2bcf14eabf02063fc7850a6b578f9bd…
) Commit Message: docs: formatsnapshot: add docs for snapshotDele... Commit Author: Abhiram Tilak Committed by: Peter Krempa (
https://gitlab.com/pipo.sk
) Pipeline #1290306839 (
https://gitlab.com/libvirt/libvirt/-/pipelines/1290306839
) triggered by Peter Krempa (
https://gitlab.com/pipo.sk
) successfully completed 54 jobs in 3 stages. -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
libvirt | Successful pipeline for master | 2bcf14ea
by GitLab
14 May '24
14 May '24
Pipeline #1290306839 has passed! Project: libvirt (
https://gitlab.com/libvirt/libvirt
) Branch: master (
https://gitlab.com/libvirt/libvirt/-/commits/master
) Commit: 2bcf14ea (
https://gitlab.com/libvirt/libvirt/-/commit/2bcf14eabf02063fc7850a6b578f9bd…
) Commit Message: docs: formatsnapshot: add docs for snapshotDele... Commit Author: Abhiram Tilak Committed by: Peter Krempa (
https://gitlab.com/pipo.sk
) Pipeline #1290306839 (
https://gitlab.com/libvirt/libvirt/-/pipelines/1290306839
) triggered by Peter Krempa (
https://gitlab.com/pipo.sk
) successfully completed 54 jobs in 3 stages. -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
libvirt | Successful pipeline for master | 16e7a612
by GitLab
14 May '24
14 May '24
Pipeline #1290281881 has passed! Project: libvirt (
https://gitlab.com/libvirt/libvirt
) Branch: master (
https://gitlab.com/libvirt/libvirt/-/commits/master
) Commit: 16e7a612 (
https://gitlab.com/libvirt/libvirt/-/commit/16e7a612924bea8d1c6b710e9680c52…
) Commit Message: gitlab-ci: Switch coverity job to AlmaLinux 9 ... Commit Author: Michal Privoznik (
https://gitlab.com/mprivozn
) Pipeline #1290281881 (
https://gitlab.com/libvirt/libvirt/-/pipelines/1290281881
) triggered by Michal Prívozník (
https://gitlab.com/MichalPrivoznik
) successfully completed 54 jobs in 3 stages. -- You're receiving this email because of your account on
gitlab.com
.
1
0
0
0
← Newer
1
...
314
315
316
317
318
319
320
...
945
Older →
Jump to page:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
Results per page:
10
25
50
100
200