@@ -36,63 +36,65 @@ on: # yamllint disable-line rule:truthy
36
36
jobs :
37
37
38
38
mpich-43 :
39
- if : ${{ !inputs || inputs.mpich }}
39
+ if : ${{ github.event_name == 'pull_request' || inputs.mpich }}
40
40
uses : ./.github/workflows/cd-wheel.yml
41
41
with :
42
42
os-arch : ${{ inputs.os-arch }}
43
43
mpiname : mpich
44
44
version :
45
45
46
46
mpich-42 :
47
- if : ${{ !inputs || inputs.mpich }}
47
+ if : ${{ github.event_name == 'pull_request' || inputs.mpich }}
48
48
uses : ./.github/workflows/cd-wheel.yml
49
49
with :
50
50
os-arch : ${{ inputs.os-arch }}
51
51
mpiname : mpich
52
52
version : 4.2.3
53
53
54
54
mpich-41 :
55
- if : ${{ !inputs || inputs.mpich }}
55
+ if : ${{ github.event_name == 'pull_request' || inputs.mpich }}
56
56
uses : ./.github/workflows/cd-wheel.yml
57
57
with :
58
58
os-arch : ${{ inputs.os-arch }}
59
59
mpiname : mpich
60
60
version : 4.1.3
61
61
62
62
mpich-40 :
63
- if : ${{ !inputs || inputs.mpich }}
63
+ if : ${{ github.event_name == 'pull_request' || inputs.mpich }}
64
64
uses : ./.github/workflows/cd-wheel.yml
65
65
with :
66
66
os-arch : ${{ inputs.os-arch }}
67
67
mpiname : mpich
68
68
version : 4.0.3
69
69
70
70
mpich-34 :
71
- if : ${{ !inputs || inputs.mpich }}
71
+ if : ${{ github.event_name == 'pull_request' || inputs.mpich }}
72
72
uses : ./.github/workflows/cd-wheel.yml
73
73
with :
74
74
os-arch : ${{ inputs.os-arch }}
75
75
mpiname : mpich
76
76
version : 3.4.3
77
77
78
78
openmpi-50 :
79
- if : ${{ !inputs || inputs.openmpi }}
79
+ if : ${{ github.event_name == 'pull_request' || inputs.openmpi }}
80
80
uses : ./.github/workflows/cd-wheel.yml
81
81
with :
82
82
os-arch : ${{ inputs.os-arch }}
83
83
mpiname : openmpi
84
84
version :
85
85
86
86
openmpi-41 :
87
- if : ${{ !inputs || inputs.openmpi }}
87
+ if : ${{ github.event_name == 'pull_request' || inputs.openmpi }}
88
88
uses : ./.github/workflows/cd-wheel.yml
89
89
with :
90
90
os-arch : ${{ inputs.os-arch }}
91
91
mpiname : openmpi
92
92
version : 4.1.7
93
93
94
94
wheelhouse :
95
- if : ${{ always() && !inputs || inputs.mpich || inputs.openmpi }}
95
+ if : >-
96
+ github.event_name == 'pull_request'
97
+ || inputs.mpich || inputs.openmpi
96
98
runs-on : ubuntu-latest
97
99
needs :
98
100
- mpich-43
0 commit comments