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 3
3
// for the documentation about the tasks.json format
4
4
"version" : " 2.0.0" ,
5
5
"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
+ },
6
32
{
7
33
"label" : " vcpkg-x64-windows-release" ,
8
34
"type" : " shell" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ elif [ "$SCAN" = "coverity" ] && [ "$TRAVIS_BRANCH" = "coverity" ]; then
20
20
21
21
PDALC_CMAKE_ARGS += " -DPDALC_ENABLE_CODE_COVERAGE=OFF"
22
22
PDALC_CMAKE_ARGS += " -DPDALC_ENABLE_DOCS=OFF"
23
- PDALC_CMAKE_ARGS += " -DPDALC_ENABLE_TESTS=OFF"
24
23
fi
25
24
26
25
export CI_PROJECT_DIR=/pdalc
You can’t perform that action at this time.
0 commit comments