Merge branch 'fix/remove-sudo-in-test-script' of https://github.com/dpronin/fio
[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     echo "Running smoke tests..."
7     make test
8 }
9
10 main