-
Notifications
You must be signed in to change notification settings - Fork 2
209 openmpi path issue with khiops 1022 on debian like os #218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -93,8 +93,11 @@ jobs: | |
| kh-samples sklearn -i khiops_classifier -e | ||
|
|
||
| # Test that the line containing "MPI command" also contains | ||
| # "mpiexec", which means that `mpiexec` has been found | ||
| kh-status | grep "MPI command" | grep -wq mpiexec | ||
| # an executable name under a /bin directory | ||
| # Note: this executable name can be different, depending on the MPI | ||
| # backend and OS; for instance, "orterun" for OpenMPI on Ubuntu Linux, but | ||
| # "mpiexec" for OpenMPI on Rocky Linux | ||
| kh-status | grep "MPI command" | grep -Ewq "(/.+?)/bin/.+" | ||
|
Comment on lines
+96
to
+100
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This check is weaker than whaty is stated. Maybe we should check There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Well, I am not sure: what if the executable is called something else (e.g. It soon becomes brittle IMHO. In the current state, we just check that the MPI command points to something that is inside a So, I would keep it this way; the comments contain "for instance" and this is key IMHO. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok. I think though the first part should be There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I wanted to accommodate the case when the path starts with There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Ok |
||
| release: | ||
| if: github.ref_type == 'tag' | ||
| needs: [build, test] | ||
|
|
||
Uh oh!
There was an error while loading. Please reload this page.