Merge branch 'prio-hints'
[fio.git] / ci / actions-full-test.sh
1 #!/bin/bash
2 # This script expects to be invoked from the base fio directory.
3 set -eu
4
5 main() {
6     case "${CI_TARGET_BUILD}" in
7         android*)
8             return 0;;
9     esac
10
11     echo "Running long running tests..."
12     export PYTHONUNBUFFERED="TRUE"
13     if [[ "${CI_TARGET_ARCH}" == "arm64" ]]; then
14         python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -p 1010:"--skip 15 16 17 18 19 20"
15     else
16         python3 t/run-fio-tests.py --skip 6 1007 1008 --debug
17     fi
18     make -C doc html
19 }
20
21 main