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 0dc4005 commit 4110892Copy full SHA for 4110892
.github/workflows/main.yml
@@ -84,9 +84,22 @@ jobs:
84
run: |
85
echo ::set-env name=CC::gcc-8
86
echo ::set-env name=CXX::g++-8
87
- - name: Run the tests
+ - name: Run the tests (osx)
88
+ if: startsWith(matrix.os, 'macos')
89
+ run: |
90
+ ulimit -c unlimited
91
+ sudo make -j2 test
92
+ - name: Run the tests (ubuntu)
93
+ if: startsWith(matrix.os, 'ubuntu')
94
- make -j2 test
95
96
+ sudo chmod -R +rwx /var/crash
97
98
+ - uses: actions/upload-artifact@master # capture all crashes as build artifacts
99
+ with:
100
+ name: crashes
101
+ path: /var/crash
102
+
103
- name: Check that we can still install
104
105
pip install .
0 commit comments