Skip to content

Commit 92871e6

Browse files
committed
Another attempt to fix failure condition
Added some diagnostic code
1 parent 736de83 commit 92871e6

2 files changed

Lines changed: 4 additions & 0 deletions

File tree

.github/actions/run-all-tests-with-coverage/action.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,10 @@ runs:
5858
run: |
5959
if [ "$DotnetFailures" = 'true' -o "$JsFailures" = 'true' ]
6060
then
61+
echo "Emitting failure"
6162
echo "failures=true" >> "$GITHUB_OUTPUT"
6263
else
64+
echo "Emitting success"
6365
echo "failures=false" >> "$GITHUB_OUTPUT"
6466
fi
6567
shell: bash

.github/workflows/dotnetCi.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,8 @@ jobs:
5555
continue-on-error: true
5656
- name: Upload all CI artifacts
5757
uses: ./.github/actions/upload-ci-artifacts
58+
with:
59+
tfm: ${{ env.Tfm }}
5860
- name: Fail the build if any test failures
5961
if: steps.run-all-tests.outputs.failures == 'true'
6062
run: |

0 commit comments

Comments
 (0)