|
30 | 30 | "hidden": true, |
31 | 31 | "toolchainFile": "${sourceDir}/clang.toolchain" |
32 | 32 | }, |
| 33 | + { |
| 34 | + "name": "gcc-toolchain", |
| 35 | + "hidden": true, |
| 36 | + "toolchainFile": "${sourceDir}/gcc.toolchain" |
| 37 | + }, |
33 | 38 | { |
34 | 39 | "name": "release", |
35 | 40 | "inherits": [ |
36 | 41 | "ninja-generator", |
37 | 42 | "release-build", |
38 | 43 | "clang-toolchain" |
39 | 44 | ], |
40 | | - "displayName": "Default Release Config", |
| 45 | + "displayName": "Default Release Config (Clang)", |
41 | 46 | "description": "Default release build configuration using Ninja generator and Clang compiler", |
42 | 47 | "binaryDir": "${sourceDir}/../build" |
43 | 48 | }, |
| 49 | + { |
| 50 | + "name": "release-gcc", |
| 51 | + "inherits": [ |
| 52 | + "ninja-generator", |
| 53 | + "release-build", |
| 54 | + "gcc-toolchain" |
| 55 | + ], |
| 56 | + "displayName": "Default Release Config (GCC)", |
| 57 | + "description": "Default release build configuration using Ninja generator and GCC compiler", |
| 58 | + "binaryDir": "${sourceDir}/../build-gcc" |
| 59 | + }, |
44 | 60 | { |
45 | 61 | "name": "release-test", |
46 | 62 | "inherits": "release", |
47 | | - "displayName": "Default Release Test Config", |
| 63 | + "displayName": "Default Release Test Config (Clang)", |
48 | 64 | "description": "Default release build configuration with all tests and examples", |
49 | 65 | "cacheVariables": { |
50 | 66 | "YDB_SDK_TESTS": "TRUE", |
51 | 67 | "YDB_SDK_EXAMPLES": "TRUE" |
52 | 68 | } |
53 | 69 | }, |
| 70 | + { |
| 71 | + "name": "release-test-gcc", |
| 72 | + "inherits": "release-gcc", |
| 73 | + "displayName": "Default Release Test Config (GCC)", |
| 74 | + "description": "Default release build configuration with all tests and examples using GCC", |
| 75 | + "cacheVariables": { |
| 76 | + "YDB_SDK_TESTS": "TRUE", |
| 77 | + "YDB_SDK_EXAMPLES": "TRUE" |
| 78 | + } |
| 79 | + }, |
54 | 80 | { |
55 | 81 | "name": "release-test-with-ccache-basedir", |
56 | 82 | "inherits": "release-test", |
57 | | - "displayName": "Release Test Config CCACHE_BASEDIR Case", |
| 83 | + "displayName": "Release Test Config CCACHE_BASEDIR Case (Clang)", |
58 | 84 | "description": "Only for the case when using CCACHE_BASEDIR", |
59 | 85 | "cacheVariables": { |
60 | 86 | "ARCADIA_ROOT": "../ydb-cpp-sdk", |
61 | 87 | "ARCADIA_BUILD_ROOT": "." |
62 | 88 | } |
| 89 | + }, |
| 90 | + { |
| 91 | + "name": "release-test-with-ccache-basedir-gcc", |
| 92 | + "inherits": "release-test-gcc", |
| 93 | + "displayName": "Release Test Config CCACHE_BASEDIR Case (GCC)", |
| 94 | + "description": "Only for the case when using CCACHE_BASEDIR with GCC", |
| 95 | + "cacheVariables": { |
| 96 | + "ARCADIA_ROOT": "../ydb-cpp-sdk", |
| 97 | + "ARCADIA_BUILD_ROOT": "." |
| 98 | + } |
63 | 99 | } |
64 | 100 | ], |
65 | 101 | "buildPresets": [ |
66 | 102 | { |
67 | 103 | "name": "release", |
68 | 104 | "configurePreset": "release", |
69 | | - "displayName": "Default Release Build" |
| 105 | + "displayName": "Default Release Build (Clang)" |
| 106 | + }, |
| 107 | + { |
| 108 | + "name": "release-gcc", |
| 109 | + "configurePreset": "release-gcc", |
| 110 | + "displayName": "Default Release Build (GCC)" |
70 | 111 | } |
71 | 112 | ], |
72 | 113 | "testPresets": [ |
|
84 | 125 | "name": "release", |
85 | 126 | "inherits": "common", |
86 | 127 | "configurePreset": "release-test", |
87 | | - "displayName": "Default Release Tests", |
| 128 | + "displayName": "Default Release Tests (Clang)", |
| 129 | + "environment": { |
| 130 | + "YDB_ENDPOINT": "localhost:2136", |
| 131 | + "YDB_DATABASE": "/local" |
| 132 | + } |
| 133 | + }, |
| 134 | + { |
| 135 | + "name": "release-gcc", |
| 136 | + "inherits": "common", |
| 137 | + "configurePreset": "release-test-gcc", |
| 138 | + "displayName": "Default Release Tests (GCC)", |
88 | 139 | "environment": { |
89 | 140 | "YDB_ENDPOINT": "localhost:2136", |
90 | 141 | "YDB_DATABASE": "/local" |
|
94 | 145 | "name": "release-unit", |
95 | 146 | "inherits": "common", |
96 | 147 | "configurePreset": "release-test", |
97 | | - "displayName": "Default Unit Release Tests", |
| 148 | + "displayName": "Default Unit Release Tests (Clang)", |
| 149 | + "filter" : { |
| 150 | + "include": { |
| 151 | + "label": "unit" |
| 152 | + } |
| 153 | + } |
| 154 | + }, |
| 155 | + { |
| 156 | + "name": "release-unit-gcc", |
| 157 | + "inherits": "common", |
| 158 | + "configurePreset": "release-test-gcc", |
| 159 | + "displayName": "Default Unit Release Tests (GCC)", |
98 | 160 | "filter" : { |
99 | 161 | "include": { |
100 | 162 | "label": "unit" |
|
105 | 167 | "name": "release-integration", |
106 | 168 | "inherits": "common", |
107 | 169 | "configurePreset": "release-test", |
108 | | - "displayName": "Default Integration Release Tests", |
| 170 | + "displayName": "Default Integration Release Tests (Clang)", |
| 171 | + "filter" : { |
| 172 | + "include": { |
| 173 | + "label": "integration" |
| 174 | + } |
| 175 | + }, |
| 176 | + "environment": { |
| 177 | + "YDB_ENDPOINT": "localhost:2136", |
| 178 | + "YDB_DATABASE": "/local" |
| 179 | + } |
| 180 | + }, |
| 181 | + { |
| 182 | + "name": "release-integration-gcc", |
| 183 | + "inherits": "common", |
| 184 | + "configurePreset": "release-test-gcc", |
| 185 | + "displayName": "Default Integration Release Tests (GCC)", |
109 | 186 | "filter" : { |
110 | 187 | "include": { |
111 | 188 | "label": "integration" |
|
0 commit comments