mirror of
https://github.com/wolfSSL/wolfssl.git
synced 2026-07-05 21:20:49 +02:00
3a6c31a51e
Replace the one-runner-per-configuration matrices across the
make-check workflow family with a generic pooled runner,
.github/scripts/parallel-make-check.py. Each workflow keeps its
configuration list as JSON next to the invocation; one runner (or a
small fixed set of shards, balanced by measured per-config minutes)
builds every config in its own out-of-tree (VPATH) build directory off
a single checkout/autogen, on a pool of one-per-CPU worker threads,
longest first. Concurrent checks are isolated with bubblewrap network
namespaces, compilations are cached with ccache, the first failure
aborts the rest (fail-fast, with --no-fail-fast to run everything),
and per-config timings plus pool efficiency land in the step summary.
Failure logs upload as artifacts. smoke-test.yml is likewise reworked
into a single pooled job that runs its nine configs on one runner.
Converted workflows (runner jobs per full pass):
os-check.yml 101 -> 8 (92 Ubuntu configs -> 4 shards;
the macOS matrix, the user-settings jobs and
the standalone
macos-apple-native-cert-validation.yml fold
into one macOS runner; Windows unchanged)
pq-all.yml 21 -> 2 shards
disable-pk-algs.yml 15 -> 1
wolfCrypt-Wconversion.yml 11 -> 1
trackmemory.yml 7 -> 1
cryptocb-only.yml 8 -> 1 (incl. the two new SHA512 entries)
multi-compiler.yml 6 -> 1
smallStackSize.yml 6 -> 1
multi-arch.yml 6 -> 1
async.yml 5 -> 1
psk.yml 5 -> 1
no-malloc.yml 3 -> 1
wolfsm.yml 3 -> 1
opensslcoexist.yml 2 -> 1
Measured against current upstream passing runs (job execution time,
queue excluded): ~200 runner jobs / ~374 runner-minutes per full pass
become 23 jobs / ~168 runner-minutes, with more coverage than before.
multi-arch's old matrix combined an "include" list of four
architectures with an "opts" axis; GitHub's include-merge rules made
each arch entry overwrite the previous one, so only the armel
combinations actually ran. The pooled list restores the intended
aarch64/armhf/riscv64 coverage (23 combinations; riscv64 x sp-math is
omitted as invalid - configure rejects sp-math without SP, and
--enable-riscv-asm, unlike --enable-sp-asm, does not bring SP in).
Out-of-tree build fixes this depends on:
- Makefile.am: symlink the read-only test data (certs/, tests/ config
files, sniffer captures and helpers, examples/crypto_policies,
input, quit) into the build tree via a BUILT_SOURCES stamp, removed
again in distclean-local. ChangeToWolfRoot() and the script tests
resolve everything relative to the working directory, so out-of-tree
make check and make distcheck now pass.
- scripts/multi-msg-record.py: locate the client binary from the build
tree working directory rather than the script's source directory.
- configure.ac + wolfssl/include.am: run
support/gen-debug-trace-error-codes.sh from $srcdir; it reads the
error-code headers from the source tree and generates into the build
tree.
- tests/swdev: a WOLFBUILD variable points the sub-make at the build
tree for the configure-generated headers (wolfssl/options.h,
wolfssl/version.h); the in-tree-only guards are dropped.
Portions of PR #10649 are incorporated: the cross-platform
ccache-setup composite action, repository_owner gates on check-headers
and check-source-text, the docs-only paths-ignore on os-check, and the
libspdm timeout bumps.
80 lines
3.2 KiB
Plaintext
80 lines
3.2 KiB
Plaintext
# vim:ft=automake
|
|
# All paths should be given relative to the root
|
|
|
|
if BUILD_WOLFCRYPT_TESTS
|
|
if !BUILD_KERNEL_MODULE
|
|
|
|
noinst_PROGRAMS+= wolfcrypt/test/testwolfcrypt
|
|
if BUILD_CRYPTONLY
|
|
check_PROGRAMS+= wolfcrypt/test/testwolfcrypt
|
|
endif
|
|
noinst_PROGRAMS+= wolfcrypt/test/testwolfcrypt
|
|
wolfcrypt_test_testwolfcrypt_SOURCES = wolfcrypt/test/test.c
|
|
wolfcrypt_test_testwolfcrypt_LDADD = src/libwolfssl@LIBSUFFIX@.la $(LIB_STATIC_ADD)
|
|
wolfcrypt_test_testwolfcrypt_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
|
|
if BUILD_SWDEV
|
|
wolfcrypt_test_testwolfcrypt_SOURCES += tests/swdev/swdev_loader.c
|
|
wolfcrypt_test_testwolfcrypt_LDADD += $(top_builddir)/tests/swdev/build/swdev.o $(LIBM)
|
|
wolfcrypt_test_testwolfcrypt_DEPENDENCIES += $(top_builddir)/tests/swdev/build/swdev.o
|
|
endif
|
|
noinst_HEADERS += wolfcrypt/test/test.h wolfcrypt/test/test_paths.h.in
|
|
endif
|
|
endif
|
|
|
|
if BUILD_SWDEV
|
|
# delegates to tests/swdev/Makefile
|
|
$(top_builddir)/tests/swdev/build/swdev.o: $(top_builddir)/wolfssl/options.h FORCE
|
|
$(MAKE) -C $(top_srcdir)/tests/swdev \
|
|
SRCDIR=$(abs_top_srcdir)/tests/swdev \
|
|
WOLFROOT=$(abs_top_srcdir) \
|
|
WOLFBUILD=$(abs_top_builddir) \
|
|
$(if $(CC),CC='$(CC)') \
|
|
$(if $(CCAS),CCAS='$(CCAS)') \
|
|
$(if $(LD),LD='$(LD)') \
|
|
$(if $(OBJCOPY),OBJCOPY='$(OBJCOPY)') \
|
|
PARENT_SRCS='$(filter wolfcrypt/src/%.c src/%.c,$(src_libwolfssl_la_SOURCES))' \
|
|
PARENT_ASM_SRCS='$(filter %.S,$(src_libwolfssl_la_SOURCES))' \
|
|
PARENT_CPPFLAGS='$(CPPFLAGS) $(filter-out -DBUILDING_WOLFSSL,$(DEFS))' \
|
|
PARENT_BUILD_CFLAGS='$(filter-out -include ./.build_params -DBUILDING_WOLFSSL,$(AM_CFLAGS))' \
|
|
PARENT_CFLAGS='$(CFLAGS)' \
|
|
PARENT_BUILD_CCASFLAGS='$(filter-out -DBUILDING_WOLFSSL,$(AM_CCASFLAGS))' \
|
|
PARENT_CCASFLAGS='$(CCASFLAGS)' \
|
|
BUILDDIR=$(abs_top_builddir)/tests/swdev/build
|
|
|
|
FORCE:
|
|
|
|
CLEANFILES += $(top_builddir)/tests/swdev/build/swdev.o \
|
|
$(top_builddir)/tests/swdev/build/swdev.partial.o
|
|
|
|
# Use mostlyclean-local rather than clean-local to avoid colliding with
|
|
# doc/include.am's clean-local (automake allows only one definition per
|
|
# Makefile). make clean triggers mostlyclean, so coverage is equivalent.
|
|
mostlyclean-local:
|
|
rm -rf $(top_builddir)/tests/swdev/build
|
|
endif
|
|
|
|
if BUILD_WOLFCRYPT_TESTS_LIBS
|
|
lib_LTLIBRARIES += wolfcrypt/test/libwolfcrypttest.la
|
|
wolfcrypt_test_libwolfcrypttest_la_SOURCES = wolfcrypt/test/test.c
|
|
wolfcrypt_test_libwolfcrypttest_la_CPPFLAGS = -DNO_MAIN_DRIVER
|
|
wolfcrypt_test_libwolfcrypttest_la_LIBADD = src/libwolfssl@LIBSUFFIX@.la
|
|
wolfcrypt_test_libwolfcrypttest_la_DEPENDENCIES = src/libwolfssl@LIBSUFFIX@.la
|
|
endif
|
|
|
|
EXTRA_DIST += tests/swdev/swdev.c \
|
|
tests/swdev/swdev.h \
|
|
tests/swdev/swdev_loader.c \
|
|
tests/swdev/swdev_loader.h \
|
|
tests/swdev/user_settings.h \
|
|
tests/swdev/Makefile \
|
|
tests/swdev/README.md
|
|
|
|
EXTRA_DIST += wolfcrypt/test/test.sln
|
|
EXTRA_DIST += wolfcrypt/test/test.vcproj
|
|
EXTRA_DIST += wolfcrypt/test/test-VS2022.sln
|
|
EXTRA_DIST += wolfcrypt/test/test-VS2022.vcxproj
|
|
EXTRA_DIST += wolfcrypt/test/test-VS2022.vcxproj.user
|
|
|
|
EXTRA_DIST += wolfcrypt/test/README.md
|
|
DISTCLEANFILES+= wolfcrypt/test/.libs/testwolfcrypt
|