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 56d38bc commit 4cd24e7Copy full SHA for 4cd24e7
.github/workflows/ci.yml
@@ -57,10 +57,14 @@ jobs:
57
uses: actions/checkout@v3
58
59
- name: Setup MPI
60
+ id: setup-mpi
61
uses: ./
62
with:
63
mpi: ${{ matrix.mpi }}
64
65
+ - name: Show MPI name
66
+ run: echo "${{ steps.setup-mpi.outputs.mpi }}"
67
+
68
- name: Show MPI info
69
run: mpichversion
70
if: ${{ matrix.mpi == 'mpich' }}
setup-mpi.sh
@@ -64,7 +64,7 @@ case $(uname) in
;;
esac
-echo "::set-output name=mpi::${MPI}"
+echo "mpi=${MPI}" >> $GITHUB_OUTPUT
case $MPI in
mpich)
0 commit comments