summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-11-16 13:02:20 +0100
committerTomas Mraz <tomas@openssl.org>2023-11-23 17:04:25 +0100
commit199bc0b1334f92076a8a65497b7d516f29a08b8b (patch)
tree716a941c6c0fcfc69fcaebb15aa1bb985fd717f2 /.github
parent77168ac0311eb224fbb50657e74acaa56c6edd0c (diff)
Cross Compiles CI: Run evp tests on pull requests
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> Reviewed-by: Hugo Landau <hlandau@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22750) (cherry picked from commit 0414f89d5c5187260cca63c2066580ba90c44426)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/cross-compiles.yml8
1 files changed, 7 insertions, 1 deletions
diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml
index 63fd5e829e..ef946545aa 100644
--- a/.github/workflows/cross-compiles.yml
+++ b/.github/workflows/cross-compiles.yml
@@ -158,7 +158,7 @@ jobs:
run: make -s -j4
- name: install qemu
- if: github.event_name == 'push' && matrix.platform.tests != 'none'
+ if: matrix.platform.tests != 'none'
run: sudo apt-get -yq --force-yes install qemu-user
- name: make all tests
@@ -172,3 +172,9 @@ jobs:
make test HARNESS_JOBS=${HARNESS_JOBS:-4} \
TESTS="${{ matrix.platform.tests }}" \
QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }}
+ - name: make evp tests
+ if: github.event_name == 'pull_request' && matrix.platform.tests != 'none'
+ run: |
+ make test HARNESS_JOBS=${HARNESS_JOBS:-4} \
+ TESTS="test_evp*" \
+ QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }}