summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-03-22 16:43:47 +0100
committerTomas Mraz <tomas@openssl.org>2022-11-11 10:04:11 +0100
commitae1548476321a8de7de04b681e9bf734c3131aae (patch)
tree679be6ec1800f450f311dcc40c8b09fa22eda3dd /.github
parentc425e365f493e17c029381ca63a2ceb0f9e922d3 (diff)
Disable the test_afalg on cross compile targets
The afalg engine does not work when run through qemu. Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <pauli@openssl.org> (Merged from https://github.com/openssl/openssl/pull/17945) (cherry picked from commit fecae608a9ad366a1bc740ad94628520cdf38d25)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cross-compiles.yml3
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml
index be367bb1c5..6313818c7c 100644
--- a/.github/workflows/cross-compiles.yml
+++ b/.github/workflows/cross-compiles.yml
@@ -165,10 +165,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 }}