From 5809172695f0b174ae036dc829e6d3176d926342 Mon Sep 17 00:00:00 2001 From: Bent Bisballe Nyeng Date: Sat, 1 Feb 2025 20:37:32 +0100 Subject: WIP --- Jenkinsfile | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'Jenkinsfile') diff --git a/Jenkinsfile b/Jenkinsfile index a558359..cc659ab 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,6 +4,31 @@ pipeline { stage('all targets') { parallel { + //////////////////////////////////////////////////// + stage('Windows msvc') { + agent { label 'win10 && msvc' } + environment + { + VSDEVCMD="C:\\Program Files (x86)\\Microsoft Visual Studio\\2022\\BuildTools\\Common7\\Tools\\VsDevCmd.bat" + } + steps { + echo 'Cleaning workspace ...' + bat 'git clean -d -x -f' + dir ('build/test') { + writeFile file:'dummy', text:'' + } + bat '"%VSDEVCMD%" && bootstrap.bat && ctor.exe' + echo 'Testing (msvc) ...' + bat 'ctor.exe check' + } + post { + always { + xunit(thresholds: [ skipped(failureThreshold: '0'), + failed(failureThreshold: '0') ], + tools: [ CppUnit(pattern: 'build/test/*.xml') ]) + } + } + } //////////////////////////////////////////////////// stage('MacOSX clang') { agent { label 'macos' } -- cgit v1.2.3