Skip to content

Commit

Permalink
Cross Compiles CI: Run evp tests on pull requests
Browse files Browse the repository at this point in the history
Reviewed-by: Matt Caswell <matt@openssl.org>
Reviewed-by: Shane Lontis <shane.lontis@oracle.com>
Reviewed-by: Hugo Landau <hlandau@openssl.org>
(Merged from #22750)

(cherry picked from commit 0414f89)
  • Loading branch information
t8m committed Nov 23, 2023
1 parent 77168ac commit 199bc0b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/cross-compiles.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 }}

0 comments on commit 199bc0b

Please sign in to comment.