hash: cleanups
[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() {
787c02a6
BVA
6 [ "${CI_TARGET_BUILD}" = "android" ] && return 0
7
ce1b5612
SW
8 echo "Running smoke tests..."
9 make test
10}
11
12main