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 6f3c1ab commit 793ec82Copy full SHA for 793ec82
.github/workflows/abi.yml
@@ -49,21 +49,20 @@ jobs:
49
50
steps:
51
52
- - name: Checkout MPI stubs
+ - name: Checkout MPI ABI stubs
53
uses: actions/checkout@v4
54
with:
55
repository: mpi-forum/mpi-abi-stubs
56
ref: main
57
- path: mpi-stubs
+ path: mpi-abi-stubs
58
59
- - name: Build MPI stubs
+ - name: Build MPI ABI stubs
60
run: make
61
- working-directory: mpi-stubs
+ working-directory: mpi-abi-stubs
62
63
- - name: Add MPI stubs to PATH
64
- run: |
65
- mpi_stubs=${{ github.workspace }}/mpi-stubs
66
- echo $mpi_stubs/bin >> $GITHUB_PATH
+ - name: Add MPI ABI stubs to PATH
+ run: echo $(pwd)/bin >> $GITHUB_PATH
67
68
- name: Use Python
69
uses: actions/setup-python@v5
0 commit comments