@@ -220,10 +220,12 @@ jobs:
220
220
fossa_analyze_output=$(fossa analyze --debug || true)
221
221
exit_code=$?
222
222
echo "fossa analysis complete"
223
+ echo $fossa_analyze_output
223
224
FOSSA_REPORT_URL=$(echo "$fossa_analyze_output" | grep -o 'https://app.fossa.com[^ ]*') || true
224
225
echo $FOSSA_REPORT_URL
225
226
echo "FOSSA_REPORT_URL=$FOSSA_REPORT_URL" >> "$GITHUB_OUTPUT"
226
227
echo $$FOSSA_REPORT_URL
228
+ fossa_analyze_output_1=$(fossa analyze --debug 2>&1 | tee /dev/stderr || true)
227
229
fossa report attribution --format text --timeout 600 > /tmp/THIRDPARTY
228
230
exit $exit_code
229
231
env :
@@ -336,25 +338,25 @@ jobs:
336
338
run : |
337
339
echo "| Test-Types to be executed |" >> $GITHUB_STEP_SUMMARY
338
340
echo "| ------------- |" >> $GITHUB_STEP_SUMMARY
339
- if ${{ steps.testset.outputs.unit }}; then
341
+ if ${{ steps.testset.outputs.unit == 'true' }}; then
340
342
echo "| Unit |" >> $GITHUB_STEP_SUMMARY
341
343
fi
342
- if ${{ steps.testset.outputs.knowledge }}; then
344
+ if ${{ steps.testset.outputs.knowledge == 'true' }}; then
343
345
echo "| Knowledge |" >> $GITHUB_STEP_SUMMARY
344
346
fi
345
- if ${{ steps.testset.outputs.ui }}; then
347
+ if ${{ steps.testset.outputs.ui == 'true' }}; then
346
348
echo "| UI |" >> $GITHUB_STEP_SUMMARY
347
349
fi
348
- if ${{ steps.testset.outputs.modinput_functional }}; then
350
+ if ${{ steps.testset.outputs.modinput_functional == 'true' }}; then
349
351
echo "| Modinput |" >> $GITHUB_STEP_SUMMARY
350
352
fi
351
- if ${{ steps.configure-tests-on-labels .outputs.execute_scripted_inputs_labeled }}; then
353
+ if ${{ steps.testset .outputs.scripted_inputs == 'true' }}; then
352
354
echo "| Scripted Input |" >> $GITHUB_STEP_SUMMARY
353
355
fi
354
- if ${{ steps.testset.outputs.scripted_inputs }}; then
356
+ if ${{ steps.testset.outputs.scripted_inputs == 'true' }}; then
355
357
echo "| Requirement |" >> $GITHUB_STEP_SUMMARY
356
358
fi
357
- if ${{ steps.modinput-version.outputs.ucc_modinput_tests }}; then
359
+ if ${{ steps.modinput-version.outputs.ucc_modinput_tests == 'true' }}; then
358
360
echo "| UCC Modinput |" >> $GITHUB_STEP_SUMMARY
359
361
fi
360
362
0 commit comments