Closed drbenmorgan closed 3 weeks ago
3 350 files 5 176 suites 3m 53s :stopwatch: 1 557 tests 1 529 :white_check_mark: 28 :zzz: 0 :x: 17 183 runs 17 120 :white_check_mark: 63 :zzz: 0 :x:
Results for commit 7f83f86f.
:recycle: This comment has been updated with latest results.
Noted in ATLAS builds that the export of
CMAKE_CUDA_ARCHITECTURES
to theConfig.hh
andCeleritasConfig.cmake
files resulted in newlines replacing the semicolons when this variable is a proper CMake list. For example, running CMake asas in ATLAS builds created a
Config.hh
with:and thus a compile-time error. Similarly,
CeleritasConfig.cmake
gotAssuming that we want to retain these as
"X;Y;Z"
, the changes here explicitly escape any semicolons in variables exported to CMake files to ensure their retention, and also the CUDA/HIP architecture variable exported toConfig.hh
to retain them and prevent compilation error.