t/nvmept_trim: increase transfer size for some tests
[fio.git] / ci / actions-smoke-test.sh
1 #!/bin/bash
2 # This script expects to be invoked from the base fio directory.
3 set -eu
4
5 main() {
6     [ "${CI_TARGET_BUILD}" = "android" ] && return 0
7
8     echo "Running smoke tests..."
9     make test
10 }
11
12 main