From 0e5e84c48690ecab4eda7cbee948b791623b137a Mon Sep 17 00:00:00 2001 From: Bernd Edlinger Date: Sun, 28 Sep 2025 08:32:34 +0200 Subject: [PATCH] Enable the V extension in the OS-Zoo CI job and also fix the unintentional omission of the ZBA extension, since the first word in the OPENSSL_riscvcap environment variable is ignored, because it is assumed to be the processor base architecture, e.g. something like RV64GC. Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/28684) --- .github/workflows/os-zoo.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/os-zoo.yml b/.github/workflows/os-zoo.yml index acdfd3ec55b..68f0c331ac4 100644 --- a/.github/workflows/os-zoo.yml +++ b/.github/workflows/os-zoo.yml @@ -240,7 +240,7 @@ jobs: run: ./util/opensslwrap.sh version -c - name: make test env: - OPENSSL_riscvcap: ZBA_ZBB_ZBC_ZBS_ZKT + OPENSSL_riscvcap: RV64GC_ZBA_ZBB_ZBC_ZBS_ZKT_V run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} freebsd-x86_64: -- 2.47.3