Skip to content

Commit

Permalink
struggeling with yml syntax...try06
Browse files Browse the repository at this point in the history
  • Loading branch information
joern274 committed Feb 27, 2023
1 parent c0ef1d9 commit fd5b00e
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/ubuntu22.04.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,8 +114,7 @@ jobs:
run: |
cd build
ulimit -c unlimited
ctest --rerun-failed --output-on-failure
ls -l
sudo ctest --rerun-failed --output-on-failure
# ninja -v hal_coverage
# bash <(curl -s https://codecov.io/bash) -f hal_coverage.info.cleaned || echo "Codecov did not collect coverage reports"
env:
Expand All @@ -127,8 +126,17 @@ jobs:
CCACHE_COMPRESSLEVEL: 6
CCACHE_MAXSIZE: 400M

- name: List core dump
shell: bash
continue-on-error: true
run: |
cd build
ls -l
sudo chmod -R +rwx /var/lib/apport
ls -l /var/lib/apport/coredump
- name: Save core dump
uses: actions/upload-artifact@v3
with:
name: crashes
path: build/core*
path: /var/lib/apport/coredump/core*
2 changes: 1 addition & 1 deletion install_dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ elif [[ "$platform" == 'linux' ]]; then
libqt5svg5-dev libqt5svg5* ninja-build lcov gcovr python3-sphinx \
doxygen python3-sphinx-rtd-theme python3-jedi python3-pip \
pybind11-dev python3-pybind11 rapidjson-dev libspdlog-dev libz3-dev z3 \
libreadline-dev \
libreadline-dev apport \
$additional_deps \
graphviz libomp-dev libsuitesparse-dev # For documentation
sudo pip3 install -r requirements.txt
Expand Down

0 comments on commit fd5b00e

Please sign in to comment.