From 3513a830cc159c913b6c9bf1cbaf1577a1f47808 Mon Sep 17 00:00:00 2001 From: Dmitry Misharov Date: Wed, 2 Apr 2025 11:48:00 +0200 Subject: [PATCH] Run tests nightly on riscv64 runner MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Reviewed-by: Saša Nedvědický Reviewed-by: Paul Dale Reviewed-by: Tomas Mraz (Merged from https://github.com/openssl/openssl/pull/27240) --- .github/workflows/os-zoo.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/.github/workflows/os-zoo.yml b/.github/workflows/os-zoo.yml index 00a92282517..b58e97790da 100644 --- a/.github/workflows/os-zoo.yml +++ b/.github/workflows/os-zoo.yml @@ -211,6 +211,23 @@ jobs: - name: make test run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} + linux-riscv64: + runs-on: linux-riscv64 + steps: + - uses: actions/checkout@v4 + - name: config + run: ./config enable-fips enable-ec_nistp_64_gcc_128 enable-md2 enable-rc5 enable-ssl3 enable-ssl3-method enable-trace + - name: config dump + run: ./configdata.pm --dump + - name: make + run: make -j8 + - name: get cpu info + run: ./util/opensslwrap.sh version -c + - name: make test + env: + OPENSSL_riscvcap: ZBA_ZBB_ZBC_ZBS_ZKT + run: make test HARNESS_JOBS=${HARNESS_JOBS:-4} + freebsd-x86_64: runs-on: ubuntu-latest steps: -- 2.47.2