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 88302d9 commit c6efa05Copy full SHA for c6efa05
.github/workflows/ompi_mpi4py.yaml
@@ -1,6 +1,19 @@
1
name: mpi4py
2
3
-on: [ pull_request ]
+on:
4
+ pull_request:
5
+ workflow_dispatch:
6
+ inputs:
7
+ repository:
8
+ description: 'mpi4py repository'
9
+ default: 'mpi4py/mpi4py'
10
+ required: false
11
+ type: string
12
+ ref:
13
+ description: 'mpi4py branch/tag/SHA'
14
+ default: 'master'
15
16
17
18
jobs:
19
build:
@@ -89,7 +102,8 @@ jobs:
89
102
- name: Checkout mpi4py
90
103
uses: actions/checkout@v4
91
104
with:
92
- repository: "mpi4py/mpi4py"
105
+ repository: ${{ inputs.repository || 'mpi4py/mpi4py' }}
106
+ ref: ${{ inputs.ref }}
93
107
94
108
- name: Build mpi4py wheel
95
109
run: python -m pip wheel .
0 commit comments