Skip to content

Commit

Permalink
Make thread dump
Browse files Browse the repository at this point in the history
  • Loading branch information
nck-mlcnv committed Jul 5, 2024
1 parent eeaf789 commit e23b02a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,11 @@ jobs:
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
restore-keys: ${{ runner.os }}-m2
- name: Testing the Java code
run: mvn package
run: mvn package & jstack -l -e $(jps | grep surefire | awk -F ' ' '{print $1}') > jstack.log
- uses: actions/upload-artifact@v4
with:
name: thread-dump
path: jstack.log

# Only run for pull request on main or if pushed to develop
compile_native:
Expand Down

0 comments on commit e23b02a

Please sign in to comment.