QGIS/scripts/runtests_local_travis_config.sh

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
222 B
Bash
Raw Permalink Normal View History

2018-06-05 11:22:18 +02:00
#!/usr/bin/env bash
DIR=$(git rev-parse --show-toplevel)
2018-06-21 11:51:22 +10:00
cd $1 || exit
FOLDER=linux
ctest -E "$(cat ${DIR}/.ci/travis/${FOLDER}/blocklist.txt | sed -r '/^(#.*?)?$/d' | paste -sd '|' -)" --output-on-failure
2018-06-21 11:51:22 +10:00
cd $DIR || exit