mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-19 00:04:52 -04:00
10 lines
272 B
Bash
Executable File
10 lines
272 B
Bash
Executable File
#!/usr/bin/env bash
|
|
DIR=$(git rev-parse --show-toplevel)
|
|
cd $1 || exit
|
|
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 || exit
|