Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
externl committed Nov 15, 2024
1 parent a49c6ee commit 062dec6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Enable Linux core dumps
run: |
echo "ulimit -c unlimited" >> ~/.bashrc
echo "/tmp/core.%e.%p.%t.%h" > /proc/sys/kernel/core_pattern
echo "core.%e.%p.%t.%h" > /proc/sys/kernel/core_pattern
if: runner.os == 'Linux'

Expand Down Expand Up @@ -139,7 +139,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: core-dumps-${{ matrix.config }}-${{ matrix.os }}
path: /tmp/core.*
path: ${{ matrix.working_directory || '.' }}/**/core.*
if-no-files-found: ignore
if: runner.os == 'Linux' && always()

Expand Down

0 comments on commit 062dec6

Please sign in to comment.