Skip to content

Commit e0591b6

Browse files
authored
Launchable: Exit 0 not to stop CI pipeline (ruby#12449)
1 parent 54bd5e0 commit e0591b6

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/actions/compilers/entrypoint.sh

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,8 @@ setup_launchable() {
101101
--flavor optflags="${INPUT_OPTFLAGS}" \
102102
--flavor cppflags="${INPUT_CPPFLAGS}" \
103103
--test-suite btest \
104-
> "${builddir}"/${btest_session_file}
104+
> "${builddir}"/${btest_session_file} \
105+
|| true
105106
if [ "$INPUT_CHECK" = "true" ]; then
106107
tests+=--launchable-test-reports="${test_report_path}"
107108
launchable record session \
@@ -114,7 +115,8 @@ setup_launchable() {
114115
--flavor optflags="${INPUT_OPTFLAGS}" \
115116
--flavor cppflags="${INPUT_CPPFLAGS}" \
116117
--test-suite test-all \
117-
> "${builddir}"/${test_all_session_file}
118+
> "${builddir}"/${test_all_session_file} \
119+
|| true
118120
mkdir "${builddir}"/"${test_spec_report_path}"
119121
spec_opts+=--launchable-test-reports="${test_spec_report_path}"
120122
launchable record session \
@@ -127,7 +129,8 @@ setup_launchable() {
127129
--flavor optflags="${INPUT_OPTFLAGS}" \
128130
--flavor cppflags="${INPUT_CPPFLAGS}" \
129131
--test-suite test-spec \
130-
> "${builddir}"/${test_spec_session_file}
132+
> "${builddir}"/${test_spec_session_file} \
133+
|| true
131134
fi
132135
echo "::endgroup::"
133136
trap launchable_record_test EXIT

0 commit comments

Comments
 (0)