mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
9 lines
236 B
Bash
Executable File
9 lines
236 B
Bash
Executable File
DIR=$(git rev-parse --show-toplevel)
|
|
cd $1
|
|
FOLDER=linux
|
|
if [[ "$OSTYPE" =~ darwin* ]]; then
|
|
GP=linux
|
|
fi
|
|
ctest -E "$(cat ${DIR}/.ci/travis/${FOLDER}/blacklist.txt | sed -r '/^(#.*?)?$/d' | paste -sd '|' -)" --output-on-failure
|
|
cd $DIR
|