[ci] Add Debian testing (with builtin_llvm=OFF) - #23372
Open
ferdymercury wants to merge 4 commits into
Open
ferdymercury wants to merge 4 commits into
ferdymercury wants to merge 4 commits into
Conversation
Collaborator
Author
|
@alja @osschar maybe you know why debiantesting CI build fails with a heap error? https://github.com/root-project/root/actions/runs/34956369673/job/104339538592?pr=23372 |
1 task
Test Results2 617 tests 2 617 ✅ 1h 16m 20s ⏱️ Results for commit 906d28a. |
It's like Debian13, but tests the new libcivetweb-dev package, so builtin_civetweb can be OFF.
[ci] disable pyspark on Debiantesting
CMake Error at cmake/modules/FindPySpark.cmake:34 (message):
Currently, there are no Spark versions that support Java version greater
than 21. Found Java version 25.0.4.1.
Call Stack (most recent call first):
cmake/modules/SearchInstalledSoftware.cmake:1259 (find_package)
CMakeLists.txt:131 (include)
…in_llvm=OFF Alternative to root-project#23160 that does not require any upstream or downstream patches In ROOT, for builtin_llvm=OFF we have the sequence ``` find_package(LLVM) # searchs for system package, which sets DYLIB to ON set(LLVM_LINK_LLVM_DYLIB OFF) # override DYLIB to OFF, we want static add_subdirectory(clang) # this will call find_package LLVM again ``` See root-project#13420 Since LLVM22 though, this fails: Even if we call for a second time `set(LLVM_LINK_LLVM_DYLIB OFF)` after the `add_subdirectory` line, it's not enough, because that variable was ON all throughout the child `clang/CMakeLists.txt` and has already configured some stuff with the wrong flag. Avoid the issue by preventing the double-search of LLVM and thus the double overwrite, by temporarily overwriting the find_package(LLVM) calls. Fixes root-project#18387 Fixes root-project#23155
ferdymercury
force-pushed
the
patch-24
branch
from
September 16, 2026 06:23
906d28a to
b4684d8
Compare
but builtin_clang=ON. Otherwise Clad raises a configure error.
ferdymercury
force-pushed
the
patch-24
branch
from
September 16, 2026 07:34
b4684d8 to
9af027a
Compare
ferdymercury
marked this pull request as ready for review
September 16, 2026 08:49
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This Pull request:
Changes or fixes:
Fedora CI has rawhide, So Debian CI has testing for analogy. But no need to merge this, it can stay as a draft PR for individual testing of new packages. New package to test will be libmathtext-dev.
It's like Debian13, but tests the new libcivetweb-dev package, so builtin_civetweb can be OFF. fyi @linev confirmed that new Debian civetweb will be compatible.
First results not too bad: only 13 tests failing with
builtin_llvm=OFFMerge first
Checklist: