t/nvmept_trim: increase transfer size for some tests
[fio.git] / ci / actions-smoke-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 smoke tests..."
12 make test
13}
14
15main