We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d398eb6 + 771c52c commit 5309a52Copy full SHA for 5309a52
.github/workflows/CI.yml
@@ -119,6 +119,15 @@ jobs:
119
run: |
120
brew install "${{ matrix.mpi }}"
121
122
+ #==!!!NEW CHANGE!!! Try test the following env var setting to fix macos-openmpi issue =====#
123
+ - name: Work around OpenMPI/PMIx interface selection on macOS runners
124
+ if: ${{ matrix.mpi == 'openmpi' }}
125
+ run: |
126
+ echo "PMIX_MCA_ptl_tcp_if_include=lo0" >> $GITHUB_ENV
127
+ echo "OMPI_MCA_btl_tcp_if_include=lo0" >> $GITHUB_ENV
128
+ echo "OMPI_MCA_oob_tcp_if_include=lo0" >> $GITHUB_ENV
129
+ #==========================================================================================#
130
+
131
- uses: actions/setup-java@v4
132
with:
133
distribution: 'temurin'
0 commit comments