Skip to content

Commit

Permalink
Merge pull request #5271 from input-output-hk/mgalazyn/fix/ci-fix-tar…
Browse files Browse the repository at this point in the history
…-failed

Fix tar-ing of failed test workspaces on macos in CI
  • Loading branch information
carbolymer committed May 24, 2023
2 parents 9c77052 + 007f001 commit 60f9f62
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/haskell-linux.yml
Expand Up @@ -165,7 +165,7 @@ jobs:
shell: bash
run: |
cd $TMP
find . -name 'module' -type f -printf '%h\n' | xargs -L1 basename | sort -u | xargs tar -czvf workspaces.tgz
find . -name 'module' -type f -exec dirname {} \; | xargs -L1 basename | sort -u | xargs tar -czvf workspaces.tgz
- name: Upload workspaces on tests failure
if: ${{ failure() }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/haskell.yml
Expand Up @@ -194,7 +194,7 @@ jobs:
shell: bash
run: |
cd $TMP
find . -name 'module' -type f -printf '%h\n' | xargs -L1 basename | sort -u | xargs tar -czvf workspaces.tgz
find . -name 'module' -type f -exec dirname {} \; | xargs -L1 basename | sort -u | xargs tar -czvf workspaces.tgz
- name: Upload workspaces on tests failure
if: ${{ failure() }}
Expand Down

0 comments on commit 60f9f62

Please sign in to comment.