Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ellraiser committed Nov 22, 2023
1 parent 7539c3b commit 8b956d3
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
- name: Check Report Output
if: steps.report1.outputs.conclusion == 'failure'
run: |
echo "${{ steps.report1.outputs.failures }} tests failed!"
echo "${{ steps.report1.outputs.failed }} tests failed!"
exit 1
windows-latest:
runs-on: windows-latest
Expand Down Expand Up @@ -92,8 +92,8 @@ jobs:
- name: Check Report Output
if: steps.report1.outputs.conclusion == 'failure' || steps.report2.outputs.conclusion == 'failure'
run: |
echo "${{ steps.report1.outputs.failures }} opengl tests failed!"
echo "${{ steps.report2.outputs.failures }} opengles tests failed!"
echo "${{ steps.report1.outputs.failed }} opengl tests failed!"
echo "${{ steps.report2.outputs.failed }} opengles tests failed!"
exit 1
# - name: Install Vulkan
# run: |
Expand Down Expand Up @@ -208,8 +208,8 @@ jobs:
- name: Check Report Output
if: steps.report1.outputs.conclusion == 'failure' || steps.report2.outputs.conclusion == 'failure'
run: |
echo "${{ steps.report1.outputs.failures }} opengl tests failed!"
echo "${{ steps.report2.outputs.failures }} opengles tests failed!"
echo "${{ steps.report1.outputs.failed }} opengl tests failed!"
echo "${{ steps.report2.outputs.failed }} opengles tests failed!"
exit 1
# linux-vulkan:
# runs-on: ubuntu-22.04
Expand Down

0 comments on commit 8b956d3

Please sign in to comment.