From: Bernd Edlinger Date: Mon, 6 Oct 2025 06:54:38 +0000 (+0200) Subject: print CPUINFO in QEMU cross-compile jobs X-Git-Tag: 4.0-PRE-CLANG-FORMAT-WEBKIT~227 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70b3250ed84ddaaaa29902398730cc3026b47abb;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) --- diff --git a/.github/workflows/cross-compiles.yml b/.github/workflows/cross-compiles.yml index d414bd8ec06..b0f8d362ecf 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: |