From: Tomas Mraz Date: Tue, 22 Mar 2022 15:43:47 +0000 (+0100) Subject: Disable the test_afalg on cross compile targets X-Git-Tag: openssl-3.2.0-alpha1~2819 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fecae608a9ad366a1bc740ad94628520cdf38d25;p=thirdparty%2Fopenssl.git Disable the test_afalg on cross compile targets The afalg engine does not work when run through qemu. Reviewed-by: Matt Caswell Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/17945) --- diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml index ebfc13c626f..4a2cff96d89 100644 --- a/.github/workflows/cross-compiles.yml +++ b/.github/workflows/cross-compiles.yml @@ -162,10 +162,11 @@ jobs: if: github.event_name == 'push' && matrix.platform.tests == '' run: | make test HARNESS_JOBS=${HARNESS_JOBS:-4} \ + TESTS="-test_afalg" \ QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }} - name: make some tests if: github.event_name == 'push' && matrix.platform.tests != 'none' && matrix.platform.tests != '' run: | make test HARNESS_JOBS=${HARNESS_JOBS:-4} \ - TESTS="${{ matrix.platform.tests }}" \ + TESTS="${{ matrix.platform.tests }} -test_afalg" \ QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }}