Parallel test on CI (#2364)

* Parallel test on CI

* Fix problem with Windows

* Use cache for vcpkg

* Parallel 'No Exception' test

* Use one job to run all shards
This commit is contained in:
yhirose
2026-02-12 20:55:30 -10:00
committed by GitHub
parent c1ee85d89e
commit ed5c5d325b
7 changed files with 166 additions and 51 deletions

View File

@@ -9,13 +9,22 @@ 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)