Merge branch 'improvement/fix-warnings-if-NDEBUG-enabled' of https://github.com/dpron...
[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     case "${CI_TARGET_BUILD}" in
7         android*)
8             return 0;;
9     esac
10
11     echo "Running smoke tests..."
12     make test
13 }
14
15 main