From: Bernd Edlinger Date: Mon, 6 Oct 2025 06:54:38 +0000 (+0200) Subject: print CPUINFO in QEMU cross-compile jobs X-Git-Tag: 3.6-PRE-CLANG-FORMAT-WEBKIT~77 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b5b51e0905fdd66927ade64e923b5631f9a67e9f;p=thirdparty%2Fopenssl.git print CPUINFO in QEMU cross-compile jobs Reviewed-by: Paul Dale Reviewed-by: Dmitry Belyavskiy (Merged from https://github.com/openssl/openssl/pull/28760) (cherry picked from commit 70b3250ed84ddaaaa29902398730cc3026b47abb) --- diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml index f4afd09517f..11cd4a694d1 100644 --- a/.github/workflows/cross-compiles.yml +++ b/.github/workflows/cross-compiles.yml @@ -206,8 +206,10 @@ jobs: ${{ matrix.platform.opensslcaps }}" >> $GITHUB_ENV - name: get cpu info - run: cat /proc/cpuinfo - + if: matrix.platform.tests != 'none' + run: | + cat /proc/cpuinfo + QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }} ./util/opensslwrap.sh version -c - name: make all tests if: github.event_name == 'push' && matrix.platform.tests == '' run: |