File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
.github/actions/compilers Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments