Re-enable matrix

This commit is contained in:
Daniel A. Wozniak 2024-12-06 00:06:21 -07:00 committed by Daniel Wozniak
parent 3d41bdccc6
commit 713d60d15f

View file

@ -1706,15 +1706,8 @@ def workflow_config(
ctx.info(f"{'==== test matrix ====':^80s}")
ctx.info(f"{pprint.pformat(test_matrix)}")
ctx.info(f"{'==== end test matrix ====':^80s}")
config["pkg-test-matrix"] = {"linux": [], "macos": [], "windows": []} # type: ignore
config["test-matrix"] = {"linux": [], "macos": [], "windows": []} # type: ignore
# config["pkg-test-matrix"] = pkg_test_matrix
# if not any([_ for _ in pkg_test_matrix]):
# jobs["test-pkg"] = False
# config["test-matrix"] = text_matrix
# if not any([_ for _ in test_matrix]):
# jobs["test"] = False
config["pkg-test-matrix"] = pkg_test_matrix # type: ignore
config["test-matrix"] = test_matrix # type: ignore
ctx.info("Jobs selected are")
for x, y in jobs.items():
ctx.info(f"{x} = {y}")