Skip to content

Commit 2255aed

Browse files
ci: debugging
1 parent b19d6fd commit 2255aed

File tree

1 file changed

+9
-7
lines changed

1 file changed

+9
-7
lines changed

.github/workflows/reusable-build-test-release.yml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -220,10 +220,12 @@ jobs:
220220
fossa_analyze_output=$(fossa analyze --debug || true)
221221
exit_code=$?
222222
echo "fossa analysis complete"
223+
echo $fossa_analyze_output
223224
FOSSA_REPORT_URL=$(echo "$fossa_analyze_output" | grep -o 'https://app.fossa.com[^ ]*') || true
224225
echo $FOSSA_REPORT_URL
225226
echo "FOSSA_REPORT_URL=$FOSSA_REPORT_URL" >> "$GITHUB_OUTPUT"
226227
echo $$FOSSA_REPORT_URL
228+
fossa_analyze_output_1=$(fossa analyze --debug 2>&1 | tee /dev/stderr || true)
227229
fossa report attribution --format text --timeout 600 > /tmp/THIRDPARTY
228230
exit $exit_code
229231
env:
@@ -336,25 +338,25 @@ jobs:
336338
run: |
337339
echo "| Test-Types to be executed |" >> $GITHUB_STEP_SUMMARY
338340
echo "| ------------- |" >> $GITHUB_STEP_SUMMARY
339-
if ${{ steps.testset.outputs.unit }}; then
341+
if ${{ steps.testset.outputs.unit == 'true' }}; then
340342
echo "| Unit |" >> $GITHUB_STEP_SUMMARY
341343
fi
342-
if ${{ steps.testset.outputs.knowledge }}; then
344+
if ${{ steps.testset.outputs.knowledge == 'true' }}; then
343345
echo "| Knowledge |" >> $GITHUB_STEP_SUMMARY
344346
fi
345-
if ${{ steps.testset.outputs.ui }}; then
347+
if ${{ steps.testset.outputs.ui == 'true' }}; then
346348
echo "| UI |" >> $GITHUB_STEP_SUMMARY
347349
fi
348-
if ${{ steps.testset.outputs.modinput_functional }}; then
350+
if ${{ steps.testset.outputs.modinput_functional == 'true' }}; then
349351
echo "| Modinput |" >> $GITHUB_STEP_SUMMARY
350352
fi
351-
if ${{ steps.configure-tests-on-labels.outputs.execute_scripted_inputs_labeled }}; then
353+
if ${{ steps.testset.outputs.scripted_inputs == 'true' }}; then
352354
echo "| Scripted Input |" >> $GITHUB_STEP_SUMMARY
353355
fi
354-
if ${{ steps.testset.outputs.scripted_inputs }}; then
356+
if ${{ steps.testset.outputs.scripted_inputs == 'true' }}; then
355357
echo "| Requirement |" >> $GITHUB_STEP_SUMMARY
356358
fi
357-
if ${{ steps.modinput-version.outputs.ucc_modinput_tests }}; then
359+
if ${{ steps.modinput-version.outputs.ucc_modinput_tests == 'true' }}; then
358360
echo "| UCC Modinput |" >> $GITHUB_STEP_SUMMARY
359361
fi
360362

0 commit comments

Comments
 (0)