travis: add dependency for cuda ioengine
[fio.git] / ci / travis-build.sh
CommitLineData
12e86ecb
BVA
1#!/bin/bash
2
3EXTRA_CFLAGS="-Werror"
f41f4fbe 4PYTHONUNBUFFERED=TRUE
12e86ecb
BVA
5
6if [[ "$BUILD_ARCH" == "x86" ]]; then
7 EXTRA_CFLAGS="${EXTRA_CFLAGS} -m32"
8fi
9
10./configure --extra-cflags="${EXTRA_CFLAGS}" &&
11 make &&
12 make test &&
13 if [[ "$TRAVIS_CPU_ARCH" == "arm64" ]]; then
14 sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug -p 1010:"--skip 15 16 17 18 19 20"
15 else
16 sudo python3 t/run-fio-tests.py --skip 6 1007 1008 --debug
17 fi