Skip to content

Commit

Permalink
fix: install gcc-libs; compiler-dependent sanitizer; debug buildtype
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Feb 14, 2024
1 parent 7223499 commit e9904be
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/install-dependency-packages.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ set -e
GENERAL_PACKAGE_LIST_LINUX=(
python
gcc
gcc-libs
clang
make
cmake
Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,6 +134,7 @@ jobs:
run: |
meson configure \
--prefix=$(pwd)/iguana \
-Dbuildtype=debug \
-Dexamples=True \
-Ddocumentation=False \
${{ matrix.binding_opts }} \
Expand Down Expand Up @@ -206,9 +207,16 @@ jobs:
- san_undefined
- san_memory
- san_leak
include:
- { mode: coverage, CC: gcc, CXX: g++ }
- { mode: san_address, CC: clang, CXX: clang++ }
- { mode: san_thread, CC: clang, CXX: clang++ }
- { mode: san_undefined, CC: clang, CXX: clang++ }
- { mode: san_memory, CC: clang, CXX: clang++ }
- { mode: san_leak, CC: clang, CXX: clang++ }
env:
CC: clang # prefer `clang` sanitizers
CXX: clang++
CC: ${{ matrix.CC }}
CXX: ${{ matrix.CXX }}
steps:
### setup
- uses: actions/checkout@v4
Expand Down

0 comments on commit e9904be

Please sign in to comment.