mirror of
https://github.com/curl/curl.git
synced 2026-04-17 04:01:42 +03:00
ci: tidy-ups
- http3-linux: add newlines for readability. - http3-linux: use `make pytest` to run pytest. - checksrc: use `|` multiline to sync with other uses. - checksrc: prefer `$()`. - prefer `>-` over `>` for folded option lists. - cygwin: drop a `grep` no longer necessary. Closes #15081
This commit is contained in:
parent
8a8719d2e1
commit
2c419fc14b
5 changed files with 21 additions and 17 deletions
8
.github/workflows/linux.yml
vendored
8
.github/workflows/linux.yml
vendored
|
|
@ -161,7 +161,7 @@ jobs:
|
|||
|
||||
- name: openssl3 https-only
|
||||
install_steps: gcc-11 openssl3
|
||||
configure: >
|
||||
configure: >-
|
||||
LDFLAGS="-Wl,-rpath,$HOME/openssl3/lib" --with-openssl=$HOME/openssl3 --enable-debug --disable-unity
|
||||
--disable-dict --disable-gopher --disable-ldap --disable-telnet
|
||||
--disable-imap --disable-pop3 --disable-smtp
|
||||
|
|
@ -182,7 +182,7 @@ jobs:
|
|||
- name: address-sanitizer
|
||||
install_packages: zlib1g-dev libssh2-1-dev clang libssl-dev libubsan1 libasan8 libtsan2
|
||||
install_steps: pytest
|
||||
configure: >
|
||||
configure: >-
|
||||
CC=clang
|
||||
CFLAGS="-fsanitize=address,undefined,signed-integer-overflow -fno-sanitize-recover=undefined,integer -Wformat -Werror=format-security -Werror=array-bounds -g"
|
||||
LDFLAGS="-fsanitize=address,undefined -fno-sanitize-recover=undefined,integer"
|
||||
|
|
@ -192,7 +192,7 @@ jobs:
|
|||
- name: thread-sanitizer
|
||||
install_packages: zlib1g-dev clang libtsan2
|
||||
install_steps: pytest openssltsan3
|
||||
configure: >
|
||||
configure: >-
|
||||
CC=clang
|
||||
CFLAGS="-fsanitize=thread -g"
|
||||
LDFLAGS="-fsanitize=thread -Wl,-rpath,$HOME/openssl3/lib"
|
||||
|
|
@ -200,7 +200,7 @@ jobs:
|
|||
|
||||
- name: memory-sanitizer
|
||||
install_packages: clang
|
||||
configure: >
|
||||
configure: >-
|
||||
CC=clang
|
||||
CFLAGS="-fsanitize=memory -Wformat -Werror=format-security -Werror=array-bounds -g"
|
||||
LDFLAGS="-fsanitize=memory"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue