We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8e872c commit 4a4515eCopy full SHA for 4a4515e
.github/workflows/main.yml
@@ -84,14 +84,18 @@ jobs:
84
run: |
85
echo ::set-env name=CC::gcc-8
86
echo ::set-env name=CXX::g++-8
87
- - name: Run the tests (osx)
88
- if: startsWith(matrix.os, 'ubuntu')
89
- run: |
90
- sudo chmod -R +rwx /var/crash
+ # - name: Write permissions to ubunu
+ # if: startsWith(matrix.os, 'ubuntu')
+ # run: |
+ # sudo chmod -R +rwx /var/crash
91
- name: Run the tests
92
93
ulimit -c unlimited
94
make -j2 test
95
+ - name: Run apport-retrace if we've failed
96
+ if: startsWith(matrix.os, 'ubuntu') && failure()
97
+ run: |
98
+ apport-retrace /var/crash/*.crashes
99
- uses: actions/upload-artifact@v2 # capture all crashes as build artifacts
100
if: failure()
101
with:
0 commit comments