workqueue: handle nice better
[fio.git] / ci / actions-full-test.sh
index 4ae1dba10b40824ddd8d87acb099d6f988b62c85..d2fb4201ae37ba1f4f9bcdce91acc8dcc3338733 100755 (executable)
@@ -3,13 +3,19 @@
 set -eu
 
 main() {
+    case "${CI_TARGET_BUILD}" in
+       android*)
+           return 0;;
+    esac
+
     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
 }
 
 main