mirror of https://github.com/mosra/magnum.git
Browse Source
Conflicts: src/Magnum/Math/Test/MatrixTest.cpp src/Magnum/Math/Test/RectangularMatrixTest.cpp src/Magnum/Math/Test/VectorTest.cpp
28 changed files with 289 additions and 93 deletions
@ -0,0 +1,137 @@ |
|||||||
|
<?xml version='1.0' encoding='UTF-8'?> |
||||||
|
<matrix-project> |
||||||
|
<actions/> |
||||||
|
<description></description> |
||||||
|
<logRotator class="hudson.tasks.LogRotator"> |
||||||
|
<daysToKeep>-1</daysToKeep> |
||||||
|
<numToKeep>10</numToKeep> |
||||||
|
<artifactDaysToKeep>-1</artifactDaysToKeep> |
||||||
|
<artifactNumToKeep>-1</artifactNumToKeep> |
||||||
|
</logRotator> |
||||||
|
<keepDependencies>false</keepDependencies> |
||||||
|
<properties/> |
||||||
|
<scm class="hudson.plugins.git.GitSCM" plugin="git@2.0"> |
||||||
|
<configVersion>2</configVersion> |
||||||
|
<userRemoteConfigs> |
||||||
|
<hudson.plugins.git.UserRemoteConfig> |
||||||
|
<url>git://github.com/mosra/magnum.git</url> |
||||||
|
</hudson.plugins.git.UserRemoteConfig> |
||||||
|
</userRemoteConfigs> |
||||||
|
<branches> |
||||||
|
<hudson.plugins.git.BranchSpec> |
||||||
|
<name>*/master</name> |
||||||
|
</hudson.plugins.git.BranchSpec> |
||||||
|
</branches> |
||||||
|
<doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations> |
||||||
|
<submoduleCfg class="list"/> |
||||||
|
<extensions> |
||||||
|
<hudson.plugins.git.extensions.impl.CloneOption> |
||||||
|
<shallow>true</shallow> |
||||||
|
<reference></reference> |
||||||
|
</hudson.plugins.git.extensions.impl.CloneOption> |
||||||
|
</extensions> |
||||||
|
</scm> |
||||||
|
<canRoam>true</canRoam> |
||||||
|
<disabled>false</disabled> |
||||||
|
<blockBuildWhenDownstreamBuilding>false</blockBuildWhenDownstreamBuilding> |
||||||
|
<blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding> |
||||||
|
<triggers/> |
||||||
|
<concurrentBuild>false</concurrentBuild> |
||||||
|
<customWorkspace>Magnum</customWorkspace> |
||||||
|
<axes> |
||||||
|
<hudson.matrix.TextAxis> |
||||||
|
<name>arch</name> |
||||||
|
<values> |
||||||
|
<string>32</string> |
||||||
|
<string>64</string> |
||||||
|
</values> |
||||||
|
</hudson.matrix.TextAxis> |
||||||
|
<hudson.matrix.TextAxis> |
||||||
|
<name>libraries</name> |
||||||
|
<values> |
||||||
|
<string>static</string> |
||||||
|
<string>dynamic</string> |
||||||
|
</values> |
||||||
|
</hudson.matrix.TextAxis> |
||||||
|
<hudson.matrix.TextAxis> |
||||||
|
<name>compatibility</name> |
||||||
|
<values> |
||||||
|
<string></string> |
||||||
|
<string>deprecated</string> |
||||||
|
</values> |
||||||
|
</hudson.matrix.TextAxis> |
||||||
|
</axes> |
||||||
|
<builders> |
||||||
|
<hudson.tasks.Shell> |
||||||
|
<command> |
||||||
|
<![CDATA[ |
||||||
|
git submodule init |
||||||
|
git submodule update |
||||||
|
|
||||||
|
if [ ${libraries} = "static" ] ; then |
||||||
|
static_build_flag="-DBUILD_STATIC=ON -DBUILD_STATIC_PIC=ON" |
||||||
|
fi |
||||||
|
|
||||||
|
if [ "${compatibility}" = "deprecated" ] ; then |
||||||
|
deprecated_build_flag=ON |
||||||
|
else |
||||||
|
deprecated_build_flag=OFF |
||||||
|
fi |
||||||
|
|
||||||
|
mkdir -p build-mingw-w64-${arch}-${libraries}-${compatibility} |
||||||
|
cd build-mingw-w64-${arch}-${libraries}-${compatibility} |
||||||
|
|
||||||
|
cmake .. \ |
||||||
|
-DCMAKE_BUILD_TYPE=Release \ |
||||||
|
-DCMAKE_TOOLCHAIN_FILE=../toolchains/archlinux/basic-mingw-w64-${arch}.cmake \ |
||||||
|
-DCMAKE_FIND_ROOT_PATH=${JENKINS_HOME}/filesystem/mingw-w64-${arch}-${libraries}-${compatibility} \ |
||||||
|
-DCMAKE_INSTALL_PREFIX=${JENKINS_HOME}/filesystem/mingw-w64-${arch}-${libraries}-${compatibility} \ |
||||||
|
-DBUILD_TESTS=ON \ |
||||||
|
`#-DBUILD_GL_TESTS=ON` \ |
||||||
|
-DBUILD_DEPRECATED=${deprecated_build_flag} \ |
||||||
|
${static_build_flag} \ |
||||||
|
-DWITH_AUDIO=ON \ |
||||||
|
-DWITH_GLUTAPPLICATION=ON \ |
||||||
|
-DWITH_SDL2APPLICATION=ON \ |
||||||
|
-DWITH_MAGNUMFONT=ON \ |
||||||
|
-DWITH_MAGNUMFONTCONVERTER=ON \ |
||||||
|
-DWITH_OBJIMPORTER=ON \ |
||||||
|
-DWITH_TGAIMAGECONVERTER=ON \ |
||||||
|
-DWITH_TGAIMPORTER=ON \ |
||||||
|
-DWITH_WAVAUDIOIMPORTER=ON \ |
||||||
|
-DWITH_DISTANCEFIELDCONVERTER=ON \ |
||||||
|
-DWITH_FONTCONVERTER=ON \ |
||||||
|
-DWITH_MAGNUMINFO=ON \ |
||||||
|
-G Ninja |
||||||
|
|
||||||
|
ninja |
||||||
|
ninja install/strip |
||||||
|
]]> |
||||||
|
</command> |
||||||
|
</hudson.tasks.Shell> |
||||||
|
</builders> |
||||||
|
<publishers> |
||||||
|
<hudson.plugins.textfinder.TextFinderPublisher plugin="text-finder@1.9"> |
||||||
|
<regexp>Errors while running CTest</regexp> |
||||||
|
<succeedIfFound>false</succeedIfFound> |
||||||
|
<unstableIfFound>true</unstableIfFound> |
||||||
|
<alsoCheckConsoleOutput>true</alsoCheckConsoleOutput> |
||||||
|
</hudson.plugins.textfinder.TextFinderPublisher> |
||||||
|
</publishers> |
||||||
|
<buildWrappers/> |
||||||
|
<executionStrategy class="hudson.matrix.DefaultMatrixExecutionStrategyImpl"> |
||||||
|
<runSequentially>true</runSequentially> |
||||||
|
<touchStoneCombinationFilter> |
||||||
|
<![CDATA[ |
||||||
|
arch == "64" && libraries == "dynamic" && compatibility == "deprecated" |
||||||
|
]]> |
||||||
|
</touchStoneCombinationFilter> |
||||||
|
<touchStoneResultCondition> |
||||||
|
<name>UNSTABLE</name> |
||||||
|
<ordinal>1</ordinal> |
||||||
|
<color>YELLOW</color> |
||||||
|
<completeBuild>true</completeBuild> |
||||||
|
</touchStoneResultCondition> |
||||||
|
</executionStrategy> |
||||||
|
<childCustomWorkspace>.</childCustomWorkspace> |
||||||
|
</matrix-project> |
||||||
Loading…
Reference in new issue