Skip to content

Commit 166e479

Browse files
print CPUINFO in QEMU cross-compile jobs
1 parent 275f4ec commit 166e479

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/cross-compiles.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -204,8 +204,10 @@ jobs:
204204
${{ matrix.platform.opensslcaps }}" >> $GITHUB_ENV
205205

206206
- name: get cpu info
207-
run: cat /proc/cpuinfo
208-
207+
if: matrix.platform.tests != 'none'
208+
run: |
209+
cat /proc/cpuinfo
210+
QEMU_LD_PREFIX=/usr/${{ matrix.platform.arch }} ./util/opensslwrap.sh version -c
209211
- name: make all tests
210212
if: github.event_name == 'push' && matrix.platform.tests == ''
211213
run: |

0 commit comments

Comments
 (0)