From 88a2fc228e1d064876ed37350bbdc5a937dd7906 Mon Sep 17 00:00:00 2001 From: Satish Gandham Date: Tue, 14 Jun 2022 19:10:10 +0530 Subject: [PATCH] Run UI performance tests as root (#14536) We want to run chrome at higher priority on OS level, to set the process priority we need to run the script as root. --- .github/workflows/integration-tests-command.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/integration-tests-command.yml b/.github/workflows/integration-tests-command.yml index fe2f32679c..8748950c5c 100644 --- a/.github/workflows/integration-tests-command.yml +++ b/.github/workflows/integration-tests-command.yml @@ -1491,7 +1491,7 @@ jobs: POSTGRES_PASSWORD: postgres NODE_TLS_REJECT_UNAUTHORIZED: "0" MACHINE: ${{matrix.machine}} - run: ./start-test.sh + run: sudo ./start-test.sh # Restore the previous built bundle if present. If not push the newly built into the cache - name: Restore the previous bundle