Prevent dependency building failure in Intel Dockerfile - #7741
Open
Growl1234 wants to merge 1 commit into
Open
Conversation
There was a problem hiding this comment.
Pull request overview
This PR addresses Intel oneAPI 2025.2 container build breakage by explicitly selecting the new Intel MPI compiler wrappers, and improves CI signal by preventing matrix jobs from being canceled early when one job fails.
Changes:
- Set
CC/CXX/FCinDockerfile.inteltompiicx/mpiicpx/mpiifx(and installca-certificates). - Add
strategy.fail-fast: falseto selected multi-job GitHub Actions workflows so independent jobs continue running.
Reviewed changes
Copilot reviewed 3 out of 3 changed files in this pull request and generated 1 comment.
| File | Description |
|---|---|
| Dockerfile.intel | Pins MPI compiler wrappers via environment variables to avoid broken legacy wrapper defaults in oneAPI 2025.2. |
| .github/workflows/devcontainer.yml | Disables matrix fail-fast so other container builds proceed even if one fails. |
| .github/workflows/build_test_cmake.yml | Disables matrix fail-fast so other build configurations proceed even if one fails. |
Growl1234
force-pushed
the
docker-current
branch
from
August 1, 2026 10:06
12c80bf to
5fb738d
Compare
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.
Currently Intel Dockerfiles fails because Intel oneAPI toolkit lefts an invalid
mpiifortwrapper that generatesifortcommand which doesn't exist in Intel oneAPI 2025.2; same asmpiiccandmpiicpc. This PR explicity set compilers tompiicx,mpiicpx, andmpiifxthrough Docker'sENV.Also, adds
fail-fast: falseto the workflow files with several jobs so that the jobs that should be successful are not interrupted by a single failing job.