rehaul github actions everything pipeline#4939
Open
vicentebolea wants to merge 6 commits into
Open
Conversation
ac3de9f to
10a826c
Compare
| OS | Compiler | MPI | Shared | |----|----------|-----|--------| | Ubuntu 22.04 | GCC 10 | MPICH | shared | | Ubuntu 22.04 | GCC 12 | MPICH | shared | | Ubuntu 22.04 | GCC 12 | OpenMPI | shared | | Ubuntu 22.04 | GCC 12 | serial | shared | | Ubuntu 22.04 | GCC 12 | serial | static | | Ubuntu 22.04 | GCC 14 | MPICH | shared | | Ubuntu 22.04 | Clang 11 | OpenMPI | shared | | Ubuntu 22.04 | Clang 14 | MPICH | shared | | Ubuntu 22.04 | Clang 14 | serial | shared | | Ubuntu 22.04 | ROCm | serial | shared | | AlmaLinux 8 | Intel oneAPI 2023.2.1 | MPICH | shared | | manylinux2014 | GCC 11 | MPICH | shared | | manylinux2014 | GCC 11 | serial | shared | | macOS 15 | Xcode 16.4 | serial | shared | | macOS 15 | Xcode 16.4 | serial | static | | macOS 14 | Xcode 15.4 | serial | shared | | Windows 2022 | VS 2022 | MSMPI | shared | | Windows 2025 | VS 2022 | MSMPI | shared | | Windows 2025 | VS 2022 | serial | shared | | Windows 2025 | VS 2022 | serial | static |
Move manylinux2014 GCC 11 builds (mpich + serial) from GitHub Actions to the GitLab spack infrastructure (gitlab-ci-spack.yml), freeing a slot in the GitHub Actions matrix. Add Ubuntu 22.04 / GCC 14 / MPICH / static as the new job to fill the freed slot, providing static-linking coverage with the latest GCC. | OS | Compiler | MPI | Shared | |----|----------|-----|--------| | Ubuntu 22.04 | GCC 10 | MPICH | shared | | Ubuntu 22.04 | GCC 12 | MPICH | shared | | Ubuntu 22.04 | GCC 12 | OpenMPI | shared | | Ubuntu 22.04 | GCC 12 | serial | shared | | Ubuntu 22.04 | GCC 12 | serial | static | | Ubuntu 22.04 | GCC 14 | MPICH | shared | | Ubuntu 22.04 | GCC 14 | MPICH | static | | Ubuntu 22.04 | Clang 11 | OpenMPI | shared | | Ubuntu 22.04 | Clang 14 | MPICH | shared | | Ubuntu 22.04 | Clang 14 | serial | shared | | Ubuntu 22.04 | ROCm | serial | shared | | AlmaLinux 8 | Intel oneAPI 2023.2.1 | MPICH | shared | | macOS 15 | Xcode 16.4 | serial | shared | | macOS 15 | Xcode 16.4 | serial | static | | macOS 14 | Xcode 15.4 | serial | shared | | Windows 2022 | VS 2022 | MSMPI | shared | | Windows 2025 | VS 2022 | MSMPI | shared | | Windows 2025 | VS 2022 | serial | shared | | Windows 2025 | VS 2022 | serial | static |
- CodeQL: migrate from gcc9 to gcc12 image (new registry format) and rename cmake config accordingly; add SZ3 to its feature set - gcc12-static-serial: replace reinterpret_cast<vector<T>&> with helper::NewVectorType<IOType,T> in ADIOS2fstream.tcc to silence -Wstrict-aliasing (matches pattern already used in Attribute.cpp) - gcc14-mpich: suppress -Wuninitialized/-Wmaybe-uninitialized from SZ3 third-party header HuffmanEncoder.hpp
- gcc14-static-mpich: suppress -Wuninitialized/-Wmaybe-uninitialized in CMAKE_CXX_FLAGS_RELEASE; warnings come from SZ3 third-party header HuffmanEncoder.hpp which is auto-detected via spack - gcc12-static-serial: suppress -Wuse-after-free in CMAKE_CXX_FLAGS_RELEASE; gcc12 false-positive in stl_vector.h:988 triggered by Variable.tcc SelectionSize inlining under -Os
Same gcc14 false-positive as gcc12 (-Os inlining through stl_vector.h), now at line 1006 in the gcc14 stdlib.
The Spack CI runner's before_script checks 'import request' using the container's Python. CentOS 7 has Python 2.7 at /usr/bin/python and the cp312 request package in /usr/local/bin isn't always found first. Dockerfile: add /usr/bin/python3 and /usr/bin/python symlinks to cp312, and install 'requests' (the standard HTTP library) instead of 'request'. Image requires rebuild to take effect; mark manylinux2014 GitLab jobs allow_failure in the interim.
eisenhauer
approved these changes
May 16, 2026
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.
New jobs (limit it to 20 jobs, github max concurrent jobs)