workqueue: handle nice better
[fio.git] / ci / actions-smoke-test.sh
... / ...
CommitLineData
1#!/bin/bash
2# This script expects to be invoked from the base fio directory.
3set -eu
4
5main() {
6 case "${CI_TARGET_BUILD}" in
7 android*)
8 return 0;;
9 esac
10
11 echo "Running smoke tests..."
12 make test
13}
14
15main