Skip to content

Commit

Permalink
doit
Browse files Browse the repository at this point in the history
  • Loading branch information
ptomato committed Sep 9, 2023
1 parent d0a2bd6 commit 92deb48
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,21 +69,30 @@ jobs:
gstreamer1.0-plugins-bad \
gstreamer1.0-plugins-good \
gstreamer1.0-tools \
libgirepository1.0-dev \
libc6-dbg \
libgstreamer1.0-dev \
libgtk-3-dev \
libxml2-utils \
meson
- uses: actions/checkout@v2

- name: configure
run: meson _build -Db_sanitize=address,undefined
run: |
meson _build \
-Db_sanitize=address,undefined \
-Dintrospection=false \
-Dbocfel=false \
-Dfrotz=false \
-Dnitfol=false \
-Dplayer=false
- name: build
run: ASAN_OPTIONS=detect_leaks=0 ninja -C _build
run: ASAN_OPTIONS=start_deactivated=true,detect_leaks=0 ninja -C _build

- name: test
run: |
ASAN_OPTIONS=fast_unwind_on_malloc=0 \
LSAN_OPTIONS=suppressions=$(pwd)/tests/lsan.supp \
xvfb-run -a meson test -C _build
Expand Down

0 comments on commit 92deb48

Please sign in to comment.