Skip to content

Commit

Permalink
[Java] Disable Apport on Ubuntu take 2.
Browse files Browse the repository at this point in the history
  • Loading branch information
vyazelenko committed Jan 16, 2025
1 parent ac3e701 commit ddb30e3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-low-cadence.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ jobs:
if: runner.os == 'Linux'
run: |
ulimit -c unlimited
sudo systemctl stop apport.service
sudo systemctl disable apport.service
sudo systemctl stop apport.service || true
sudo systemctl disable apport.service || true
sudo mkdir /var/coredump
sudo chmod a+rw /var/coredump
sudo sysctl -w kernel.core_pattern="/var/coredump/core_%e.%p"
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ jobs:
if: runner.os == 'Linux'
run: |
ulimit -c unlimited
sudo systemctl stop apport.service
sudo systemctl disable apport.service
sudo systemctl stop apport.service || true
sudo systemctl disable apport.service || true
sudo mkdir /var/coredump
sudo chmod a+rw /var/coredump
sudo sysctl -w kernel.core_pattern="/var/coredump/core_%e.%p"
Expand Down

0 comments on commit ddb30e3

Please sign in to comment.