summaryrefslogtreecommitdiff
path: root/.gitlab-ci/lava.yml.jinja2
diff options
context:
space:
mode:
authorEmma Anholt <emma@anholt.net>2021-05-26 20:40:59 -0700
committerMarge Bot <eric+marge@anholt.net>2021-05-28 11:39:43 +0000
commit3542afbdd038bb3d6a7ade9a455a3034105db4ff (patch)
tree600db2fa71673a181da36f8545feea6c6f4333a2 /.gitlab-ci/lava.yml.jinja2
parentea5f1fa2799ad572b32d3ac2c2bce60ae08b6cd4 (diff)
Revert "ci: Configure DUTs for max performance"
This reverts commit eef5409df4c3f1192687eaa6157875e4650c1206. I suspect this has caused a lot of the CI instability today -- some flakes were already added, but the a630-traces job is still flaking. Revert until a fix makes it stable. Reviewed-by: Tomeu Vizoso <tomeu.vizoso@collabora.com> Part-of: <https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/11024>
Diffstat (limited to '.gitlab-ci/lava.yml.jinja2')
-rw-r--r--.gitlab-ci/lava.yml.jinja25
1 files changed, 0 insertions, 5 deletions
diff --git a/.gitlab-ci/lava.yml.jinja2 b/.gitlab-ci/lava.yml.jinja2
index e9735d6b3af..e8c74aac721 100644
--- a/.gitlab-ci/lava.yml.jinja2
+++ b/.gitlab-ci/lava.yml.jinja2
@@ -82,14 +82,9 @@ actions:
- modprobe amdgpu || true
- # Disable GPU frequency scaling
- DEVFREQ_GOVERNOR=`find /sys/devices -name governor | grep gpu || true`
- echo performance > $DEVFREQ_GOVERNOR || true
- # Disable CPU frequency scaling
- - echo performance | tee -a /sys/devices/system/cpu/cpufreq/policy*/scaling_governor || true
-
- # Disable GPU runtime PM
- GPU_AUTOSUSPEND=`find /sys/devices -name autosuspend_delay_ms | grep gpu | head -1`
- echo -1 > $GPU_AUTOSUSPEND || true