Skip to content

Commit 914254d

Browse files
committed
kernelCTF: fix workflow 2
1 parent e8784dc commit 914254d

File tree

1 file changed

+18
-7
lines changed

1 file changed

+18
-7
lines changed

.github/workflows/kernelctf-test.yaml

+18-7
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,26 @@ jobs:
77
cpu_info:
88
runs-on: ubuntu-22.04-4core
99
steps:
10-
- name: KPTI check
11-
run: |
12-
cat /proc/cpuinfo|grep " pti"
13-
sudo dmesg | grep 'Kernel/User page tables isolation'
14-
cat /sys/devices/system/cpu/vulnerabilities/meltdown
15-
dmesg | grep isolation
10+
- name: "KPTI check: cpuinfo"
11+
continue-on-error: true
12+
run: cat /proc/cpuinfo|grep " pti"
13+
14+
- name: "KPTI check: dmesg"
15+
continue-on-error: true
16+
run: sudo dmesg | grep 'Kernel/User page tables isolation'
17+
18+
- name: "KPTI check: dmesg isolation"
19+
continue-on-error: true
20+
run: sudo dmesg | grep isolation
21+
22+
- name: "Meltdown check"
23+
continue-on-error: true
24+
run: cat /sys/devices/system/cpu/vulnerabilities/meltdown
1625

1726
- name: cpuinfo
27+
continue-on-error: true
1828
run: cat /proc/cpuinfo
1929

2030
- name: dmesg
21-
run: dmesg
31+
continue-on-error: true
32+
run: sudo dmesg

0 commit comments

Comments
 (0)