mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
We had a confusing and unpredictable mix of script names with - vs _, e.g. scripts/prepare-commit.sh vs scripts/sipify_all.sh This unifies with the preferred _ convention for script file names
18 lines
417 B
Bash
Executable File
18 lines
417 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
if [ -d build ]
|
|
then
|
|
rm -rf build
|
|
fi
|
|
|
|
mkdir build
|
|
cd build || exit
|
|
cmake ..
|
|
#xvfb-run --auto-servernum --server-num=1 --server-args="-screen 0 1024x768x24" make Experimental || true
|
|
make Experimental || true
|
|
#TRES=0
|
|
#ctest -T test --no-compress-output || true
|
|
if [ -f Testing/TAG ] ; then
|
|
xsltproc ../tests/ctest2junix.xsl Testing/$(head -n 1 < Testing/TAG)/Test.xml > CTestResults.xml
|
|
fi
|