We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 840c06d commit 5cf3f81Copy full SHA for 5cf3f81
.github/workflows/pip.yml
@@ -106,9 +106,11 @@ jobs:
106
kh-samples core -i train_coclustering -e
107
kh-samples sklearn -i khiops_classifier -e
108
109
- # Test that the line containing "MPI command" also contains
110
- # an executable named "mpiexec"
111
- kh-status | grep "MPI command" | grep -wq "mpiexec"
+ # Test that the line containing "MPI command" does not contain "<empty>"
+ # (as given by kh-status in the absence of MPI support)
+ # The MPI command is not always named mpiexec, but can be orterun etc
112
+ # (as given by khiops_env)
113
+ kh-status | grep "MPI command" | grep -vwq "<empty>"
114
release:
115
if: github.ref_type == 'tag'
116
needs: [build, test]
0 commit comments