diff options
| author | Dan Halbert <halbert@adafruit.com> | 2021-03-05 15:00:50 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-05 15:00:50 -0500 |
| commit | dfcc9c6d8b22d0f2be4d9350c63486b15cb85fa3 (patch) | |
| tree | 907a029133b73c3c6bf3941a002abac1434d5fbe | |
| parent | 3c50918adcc97379e3ca9e70272f0f272f94a0ca (diff) | |
| parent | f7e42bfebc4189441ad21da9402ed593dbc5f4f1 (diff) | |
Merge pull request #4340 from jepler/fix-ci-failure-info
build.yml: Fix 'Print failure info' to not error
| -rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7fa2953b3..32e3bc900 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -81,6 +81,7 @@ jobs: working-directory: tests - name: Print failure info run: | + shopt -s nullglob; for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; |
