Skip to content

Commit

Permalink
cat /proc/cpuinfo
Browse files Browse the repository at this point in the history
  • Loading branch information
benja-M-1 committed Nov 8, 2023
1 parent b730299 commit 6034825
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion start/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 6034825

Please sign in to comment.