From: Denis Pronin Date: Sat, 2 Apr 2022 08:46:47 +0000 (+0300) Subject: actions-full-test.sh, removed sudo from the script X-Git-Tag: test-tag-2022-08-09~65^2 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=7c799ab224ef4042967a9acca690cd33dbb34545;p=fio.git actions-full-test.sh, removed sudo from the script the script might be called with 'sudo' from the call site, if required Signed-off-by: Denis Pronin --- diff --git a/ci/actions-full-test.sh b/ci/actions-full-test.sh index 91790664..8282002f 100755 --- a/ci/actions-full-test.sh +++ b/ci/actions-full-test.sh @@ -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 }