From 9af202fbd044cb3b58ee1222707dd4a3404087ac Mon Sep 17 00:00:00 2001 From: Eric Anderson Date: Thu, 13 Apr 2023 12:43:49 -0700 Subject: [PATCH] .github/workflows: Fix duplicate key in testing CI This has been broken and not running tests since d580bd3 (just a few days ago). --- .github/workflows/testing.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 4b5e7485ce..79513c9e0e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -58,8 +58,9 @@ jobs: uses: actions/upload-artifact@v3 with: name: Test Reports (JRE ${{ matrix.jre }}) - path: ./*/build/reports/tests/** - path: ./*/*/build/reports/tests/** + path: | + ./*/build/reports/tests/** + ./*/*/build/reports/tests/** retention-days: 14 - name: Check for modified codegen run: test -z "$(git status --porcelain)" || (git status && echo Error Working directory is not clean. Forget to commit generated files? && false)