This commit is contained in:
Alex Cheema
2024-12-11 22:01:29 +00:00
parent 6cf2af39e8
commit 90677415c7

View File

@@ -75,8 +75,12 @@ jobs:
# Additional runtime optimizations
# Set process scheduling
sudo taskpolicy -b PERFORMANCE
# Check if taskpolicy exists before using it
if command -v taskpolicy >/dev/null 2>&1; then
sudo taskpolicy -b PERFORMANCE
else
echo "taskpolicy command not available, skipping process scheduling optimization"
fi
# Verify optimizations
echo "Verifying performance settings..."