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