mirror of
https://github.com/yhirose/cpp-httplib.git
synced 2026-04-12 11:48:30 +00:00
* Parallel test on CI * Fix problem with Windows * Use cache for vcpkg * Parallel 'No Exception' test * Use one job to run all shards
34 lines
727 B
Makefile
34 lines
727 B
Makefile
set shell := ["bash", "-c"]
|
|
|
|
default: list
|
|
|
|
list:
|
|
@just --list --unsorted
|
|
|
|
openssl:
|
|
@(cd test && make test && LSAN_OPTIONS=suppressions=lsan_suppressions.txt ./test)
|
|
@(cd test && make proxy)
|
|
|
|
openssl_parallel:
|
|
@(cd test && make test_openssl_parallel)
|
|
|
|
mbedtls:
|
|
@(cd test && make test_mbedtls && LSAN_OPTIONS=suppressions=lsan_suppressions.txt ./test_mbedtls)
|
|
@(cd test && make proxy_mbedtls)
|
|
|
|
mbedtls_parallel:
|
|
@(cd test && make test_mbedtls_parallel)
|
|
|
|
no_tls:
|
|
@(cd test && make test_no_tls && ./test_no_tls)
|
|
|
|
no_tls_parallel:
|
|
@(cd test && make test_no_tls_parallel)
|
|
|
|
fuzz:
|
|
@(cd test && make fuzz_test)
|
|
|
|
build:
|
|
@(cd test && make test_split)
|
|
@(cd test && make test_split_mbedtls)
|