Assuming one's workflow has several parallel test jobs like
rspec_tests
,
cucumber_tests
,
integration_tests
and needs to perform some "test aggregation job" that requires previous jobs to have finished but not necessarily to be successful.
Something like :
jobs: - test1 - test2 - report_test_failures: requires_even_if_failed: - test1 - test2
Right now the circleci doc for the workflow job
require
param
requires
N
List
A list of jobs that must succeed for the job to start
Is it possible to have something similar without the
that must succeed
?
Maybe such a feature is available by other means and I missed it ?
CCI-I-285