summaryrefslogtreecommitdiff
path: root/.github/workflows/linux.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/linux.yml')
-rw-r--r--.github/workflows/linux.yml13
1 files changed, 13 insertions, 0 deletions
diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml
index d1c1c6d8a..e752aefd3 100644
--- a/.github/workflows/linux.yml
+++ b/.github/workflows/linux.yml
@@ -114,6 +114,16 @@ jobs:
LIBS="-ldl -lubsan"
--with-openssl --enable-debug --enable-websockets
+ - name: memory-sanitizer
+ install_packages: clang
+ install_steps:
+ configure: >
+ CC=clang
+ CFLAGS="-fsanitize=memory -Wformat -Werror=format-security -Werror=array-bounds -g"
+ LDFLAGS="-fsanitize=memory"
+ LIBS="-ldl"
+ --without-ssl --without-zlib --without-brotli --without-zstd --without-libpsl --without-nghttp2 --enable-debug --enable-websocketsx
+
- name: event-based
install_packages: libssh-dev valgrind
configure: --enable-debug --disable-shared --disable-threaded-resolver --with-libssh --with-openssl
@@ -296,6 +306,9 @@ jobs:
- run: make V=1
name: 'make'
+ - run: ./src/curl -V
+ name: 'check curl -V output'
+
- run: make V=1 examples
name: 'make examples'