summaryrefslogtreecommitdiffstats
path: root/.github/workflows/cross-compiles.yml
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2022-03-22 16:43:47 +0100
committerTomas Mraz <tomas@openssl.org>2022-03-23 12:46:08 +0100
commitfecae608a9ad366a1bc740ad94628520cdf38d25 (patch)
tree391473636f7721e8cfbebf67e58cb68b0f739700 /.github/workflows/cross-compiles.yml
parent247554458435eaab175cdc9d36878158b9eb6f6e (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)
Diffstat (limited to '.github/workflows/cross-compiles.yml')
-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 ebfc13c626..4a2cff96d8 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 }}