From 603482565aff9503823f777948d47c82a1d4e185 Mon Sep 17 00:00:00 2001 From: Benjamin Grandfond Date: Wed, 8 Nov 2023 11:57:03 +0100 Subject: [PATCH] cat /proc/cpuinfo --- start/action.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/start/action.yml b/start/action.yml index 0faddbb..23d5eb7 100644 --- a/start/action.yml +++ b/start/action.yml @@ -100,7 +100,9 @@ runs: - name: Check for CPU with VM support if: runner.os == 'Linux' shell: bash - run: egrep '(vmx|svm)' /proc/cpuinfo + run: | + cat /proc/cpuinfo + egrep '(vmx|svm)' /proc/cpuinfo || true # https://github.blog/changelog/2023-02-23-hardware-accelerated-android-virtualization-on-actions-windows-and-linux-larger-hosted-runners/ - name: Enable KVM group perms