We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7627f91 commit 0facb96Copy full SHA for 0facb96
1 file changed
.github/workflows/performance.yml
@@ -11,11 +11,20 @@ jobs:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
14
-
+ - name: Install CPU Frequency Tools
15
+ run: |
16
+ sudo apt-get update
17
+ sudo apt-get install -y linux-cpupower
18
- name: Setup Environment
19
run: |
20
sudo cpupower frequency-set -g performance
21
sudo systemctl stop bluetooth cups avahi-daemon
22
+ - name: Verify CPU Settings
23
24
+ if [ -f /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor ]; then
25
+ echo "Current governor: $(cat /sys/devices/system/cpu/cpu0/cpufreq/scaling_governor)"
26
+ fi
27
+ cat /proc/cpuinfo | grep "processor" | head -5
28
- name: Configure CMake
29
30
cmake -B ${{ github.workspace }}/build
0 commit comments