@@ -204,7 +204,7 @@ jobs:
204
204
run : brew determine-test-runners "$TESTING_FORMULAE" "$DELETED_FORMULAE"
205
205
206
206
tests :
207
- needs : [tap_syntax, setup_tests, setup_runners]
207
+ needs : [tap_syntax, formulae_detect, setup_tests, setup_runners]
208
208
if : >
209
209
github.event_name == 'pull_request' &&
210
210
!fromJson(needs.setup_tests.outputs.syntax-only) &&
@@ -235,9 +235,15 @@ jobs:
235
235
- id : brew-test-bot-formulae
236
236
run : |
237
237
# shellcheck disable=SC2086
238
- brew test-bot $TEST_BOT_FORMULAE_ARGS
238
+ brew test-bot $TEST_BOT_FORMULAE_ARGS \
239
+ --testing-formulae="$TESTING_FORMULAE" \
240
+ --added-formulae="$ADDED_FORMULAE" \
241
+ --deleted-formulae="$DELETED_FORMULAE"
239
242
env :
240
243
TEST_BOT_FORMULAE_ARGS : ${{ needs.setup_tests.outputs.test-bot-formulae-args }}
244
+ TESTING_FORMULAE : ${{ needs.formulae_detect.outputs.testing_formulae }}
245
+ ADDED_FORMULAE : ${{ needs.formulae_detect.outputs.added_formulae }}
246
+ DELETED_FORMULAE : ${{ needs.formulae_detect.outputs.deleted_formulae }}
241
247
working-directory : ${{ env.BOTTLES_DIR }}
242
248
243
249
- name : Post-build steps
@@ -324,7 +330,7 @@ jobs:
324
330
run : brew determine-test-runners --dependents --eval-all "$TESTING_FORMULAE"
325
331
326
332
test_deps :
327
- needs : [tap_syntax, setup_dep_tests, setup_dep_runners, tests]
333
+ needs : [tap_syntax, formulae_detect, setup_dep_tests, setup_dep_runners, tests]
328
334
if : >
329
335
(success() ||
330
336
(failure() &&
@@ -361,9 +367,12 @@ jobs:
361
367
362
368
- run : |
363
369
# shellcheck disable=SC2086
364
- brew test-bot $TEST_BOT_DEPENDENTS_ARGS --testing-formulae="$TESTING_FORMULAE"
370
+ brew test-bot $TEST_BOT_DEPENDENTS_ARGS \
371
+ --testing-formulae="$TESTING_FORMULAE" \
372
+ --tested-formulae="$TESTED_FORMULAE"
365
373
env:
366
374
TEST_BOT_DEPENDENTS_ARGS: ${{ needs.setup_dep_tests.outputs.test-bot-dependents-args }}
375
+ TESTED_FORMULAE: ${{ needs.formulae_detect.outputs.testing_formulae }}
367
376
working-directory: ${{ env.BOTTLES_DIR }}
368
377
369
378
- name : Steps summary and cleanup
0 commit comments