ci: set PYTHONUNBUFFERED=TRUE
[fio.git] / ci / travis-build.sh
1 #!/bin/bash
2
3 EXTRA_CFLAGS="-Werror"
4 PYTHONUNBUFFERED=TRUE
5
6 if [[ "$BUILD_ARCH" == "x86" ]]; then
7     EXTRA_CFLAGS="${EXTRA_CFLAGS} -m32"
8 fi
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