@@ -112,19 +112,10 @@ jobs:
112
112
# # - commit to either (development, master) branch
113
113
create-cache :
114
114
if : |
115
- needs.check-release.outputs.is_release == 'true' || (
116
- github.event_name == 'workflow_dispatch' ||
117
- github.event_name == 'pull_request' ||
118
- github.event_name == 'merge_group' ||
119
- (
120
- contains('
121
- refs/heads/master
122
- refs/heads/develop
123
- refs/heads/next
124
- ', github.event.pull_request.head.ref) &&
125
- github.event_name == 'push'
126
- )
127
- )
115
+ needs.check-release.outputs.is_release == 'true' ||
116
+ github.event_name == 'workflow_dispatch' ||
117
+ github.event_name == 'pull_request' ||
118
+ github.event_name == 'merge_group'
128
119
name : Create Test Cache
129
120
needs :
130
121
- rustfmt
@@ -144,19 +135,9 @@ jobs:
144
135
# # - commit to either (development, next, master) branch
145
136
stacks-core-tests :
146
137
if : |
147
- needs.check-release.outputs.is_release == 'true' || (
148
- github.event_name == 'workflow_dispatch' ||
149
- github.event_name == 'pull_request' ||
150
- github.event_name == 'merge_group' ||
151
- (
152
- contains('
153
- refs/heads/master
154
- refs/heads/develop
155
- refs/heads/next
156
- ', github.event.pull_request.head.ref) &&
157
- github.event_name == 'push'
158
- )
159
- )
138
+ github.event_name == 'workflow_dispatch' ||
139
+ github.event_name == 'pull_request' ||
140
+ github.event_name == 'merge_group'
160
141
name : Stacks Core Tests
161
142
needs :
162
143
- rustfmt
@@ -177,19 +158,9 @@ jobs:
177
158
# # - commit to either (development, next, master) branch
178
159
stacks-core-build-tests :
179
160
if : |
180
- needs.check-release.outputs.is_release == 'true' || (
181
- github.event_name == 'workflow_dispatch' ||
182
- github.event_name == 'pull_request' ||
183
- github.event_name == 'merge_group' ||
184
- (
185
- contains('
186
- refs/heads/master
187
- refs/heads/develop
188
- refs/heads/next
189
- ', github.event.pull_request.head.ref) &&
190
- github.event_name == 'push'
191
- )
192
- )
161
+ github.event_name == 'workflow_dispatch' ||
162
+ github.event_name == 'pull_request' ||
163
+ github.event_name == 'merge_group'
193
164
name : Stacks Core Build Tests
194
165
needs :
195
166
- rustfmt
@@ -198,42 +169,21 @@ jobs:
198
169
199
170
bitcoin-tests :
200
171
if : |
201
- needs.check-release.outputs.is_release == 'true' || (
202
- github.event_name == 'workflow_dispatch' ||
203
- github.event_name == 'pull_request' ||
204
- github.event_name == 'merge_group' ||
205
- (
206
- contains('
207
- refs/heads/master
208
- refs/heads/develop
209
- refs/heads/next
210
- ', github.event.pull_request.head.ref) &&
211
- github.event_name == 'push'
212
- )
213
- )
172
+ github.event_name == 'workflow_dispatch' ||
173
+ github.event_name == 'pull_request' ||
174
+ github.event_name == 'merge_group'
214
175
name : Bitcoin Tests
215
176
needs :
216
177
- rustfmt
217
178
- create-cache
218
179
- check-release
219
180
uses : ./.github/workflows/bitcoin-tests.yml
220
181
221
-
222
182
p2p-tests :
223
183
if : |
224
- needs.check-release.outputs.is_release == 'true' || (
225
- github.event_name == 'workflow_dispatch' ||
226
- github.event_name == 'pull_request' ||
227
- github.event_name == 'merge_group' ||
228
- (
229
- contains('
230
- refs/heads/master
231
- refs/heads/develop
232
- refs/heads/next
233
- ', github.event.pull_request.head.ref) &&
234
- github.event_name == 'push'
235
- )
236
- )
184
+ github.event_name == 'workflow_dispatch' ||
185
+ github.event_name == 'pull_request' ||
186
+ github.event_name == 'merge_group'
237
187
name : P2P Tests
238
188
needs :
239
189
- rustfmt
0 commit comments