AusweisApp2/resources/jenkins/dsl/Reviews/Review_Win32_GNU.groovy

39 lines
928 B
Groovy

import common.Review
import static common.Constants.strip
def j = new Review
(
name: 'Win32_GNU',
libraries: 'Win32_GNU',
label: "Windows7_${MERCURIAL_REVISION_BRANCH}",
artifacts: 'tmp/AusweisApp2.*.log',
allowEmptyArtifacts: true,
xunit: true
).generate(this)
j.with
{
steps
{
batchFile('cd source & python resources/jenkins/import.py')
batchFile(strip("""\
cd build &
cmake -Werror=dev ../source -G\"MinGW Makefiles\"
-DCMAKE_PREFIX_PATH=%WORKSPACE%\\libs\\build\\dist
-DCMAKE_CXX_COMPILER_LAUNCHER=ccache
"""))
batchFile('cd build & mingw32-make %MAKE_FLAGS%')
batchFile('''\
set PATH=%WORKSPACE%/libs/build/dist/bin;%PATH%
set PATH=%WORKSPACE%/build/src;%WORKSPACE%/build/test/helper;%PATH%
set QT_PLUGIN_PATH=%WORKSPACE%/libs/build/dist/plugins
set QML2_IMPORT_PATH=%WORKSPACE%/libs/build/dist/qml
cd build & ctest %MAKE_FLAGS%
'''.stripIndent().trim())
}
}