actions-full-test.sh, removed sudo from the script
authorDenis Pronin <dannftk@yandex.ru>
Sat, 2 Apr 2022 08:46:47 +0000 (11:46 +0300)
committerDenis Pronin <dannftk@yandex.ru>
Sun, 10 Apr 2022 04:40:47 +0000 (07:40 +0300)
the script might be called with 'sudo' from the call site, if required

Signed-off-by: Denis Pronin <dannftk@yandex.ru>
ci/actions-full-test.sh

index 91790664569619ab85a93fc85ff09e1ea521a868..8282002f76a3ccb89c527b76cae20be974fbf750 100755 (executable)
@@ -6,9 +6,9 @@ main() {
     echo "Running long running tests..."
     export PYTHONUNBUFFERED="TRUE"
     if [[ "${CI_TARGET_ARCH}" == "arm64" ]]; then
-        sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -p 1010:"--skip 15 16 17 18 19 20"
+        python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -p 1010:"--skip 15 16 17 18 19 20"
     else
-        sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug
+        python3 t/run-fio-tests.py --skip 6 1007 1008 --debug
     fi
     make -C doc html
 }