Skip to content

Commit

Permalink
Merge pull request #19001 from margelo/fix/e2e-pref-tests-2
Browse files Browse the repository at this point in the history
ci: fix check if debug property exists
  • Loading branch information
mountiny authored May 16, 2023
2 parents 2a10b37 + d98c8d0 commit ca11ac9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/e2ePerformanceTests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
run: cat "./Host_Machine_Files/\$WORKING_DIRECTORY/output.md"

- name: Print AWS Device Farm verbose run results
if: ${{ always() && fromJSON(runner.debug) }}
if: ${{ always() && runner.debug != null && fromJSON(runner.debug) }}
run: cat "./Host_Machine_Files/\$WORKING_DIRECTORY/debug.log"

- name: Check if test failed, if so post the results and add the DeployBlocker label
Expand Down

0 comments on commit ca11ac9

Please sign in to comment.