File tree Expand file tree Collapse file tree 2 files changed +26
-1
lines changed
Expand file tree Collapse file tree 2 files changed +26
-1
lines changed Original file line number Diff line number Diff line change 33 // for the documentation about the tasks.json format
44 "version" : " 2.0.0" ,
55 "tasks" : [
6+ {
7+ "label" : " coverity-vcpkg-x64-windows-release" ,
8+ "type" : " shell" ,
9+ "windows" : {
10+ "command" : " rd ${workspaceFolder}\\ build\\ x64-windows -Recurse; ${env:COVERITY_ROOT}\\ bin\\ cov-configure.exe --msvc; ${env:COVERITY_ROOT}\\ bin\\ cov-build.exe --dir ${workspaceFolder}\\ build\\ x64-windows\\ cov-int ${workspaceFolder}\\ make.bat"
11+ },
12+ "options" : {
13+ "env" : {
14+ "BUILD_TYPE" : " Release" ,
15+ "ARCH" : " x64" ,
16+ "TARGET_OS" : " windows" ,
17+ "TOOLCHAIN" : " ${env:VCPKG_ROOT}\\ scripts\\ buildsystems\\ vcpkg.cmake"
18+ }
19+ },
20+ "group" : {
21+ "kind" : " build" ,
22+ "isDefault" : true
23+ },
24+ "presentation" : {
25+ "reveal" : " always" ,
26+ "panel" : " new"
27+ },
28+ "problemMatcher" : [
29+ " $msCompile"
30+ ]
31+ },
632 {
733 "label" : " vcpkg-x64-windows-release" ,
834 "type" : " shell" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ elif [ "$SCAN" = "coverity" ] && [ "$TRAVIS_BRANCH" = "coverity" ]; then
2020
2121 PDALC_CMAKE_ARGS += " -DPDALC_ENABLE_CODE_COVERAGE=OFF"
2222 PDALC_CMAKE_ARGS += " -DPDALC_ENABLE_DOCS=OFF"
23- PDALC_CMAKE_ARGS += " -DPDALC_ENABLE_TESTS=OFF"
2423fi
2524
2625export CI_PROJECT_DIR=/pdalc
You can’t perform that action at this time.
0 commit comments