|
49 | 49 | "CMAKE_C_COMPILER": "gcc"
|
50 | 50 | }
|
51 | 51 | },
|
| 52 | + { |
| 53 | + "name": "test", |
| 54 | + "hidden": true, |
| 55 | + "cacheVariables": { |
| 56 | + "YDB_SDK_TESTS": "TRUE", |
| 57 | + "YDB_SDK_EXAMPLES": "TRUE", |
| 58 | + "ARCADIA_ROOT": "../ydb-cpp-sdk", |
| 59 | + "ARCADIA_BUILD_ROOT": "." |
| 60 | + } |
| 61 | + }, |
52 | 62 | {
|
53 | 63 | "name": "release-clang",
|
54 | 64 | "inherits": [
|
|
69 | 79 | },
|
70 | 80 | {
|
71 | 81 | "name": "release-test-clang",
|
72 |
| - "inherits": "release-clang", |
| 82 | + "inherits": ["release-clang", "test"], |
73 | 83 | "displayName": "Default Release Test Config (Clang)",
|
74 |
| - "description": "Default release build configuration with all tests and examples", |
75 |
| - "cacheVariables": { |
76 |
| - "YDB_SDK_TESTS": "TRUE", |
77 |
| - "YDB_SDK_EXAMPLES": "TRUE" |
78 |
| - } |
| 84 | + "description": "Default release build configuration with all tests and examples" |
79 | 85 | },
|
80 | 86 | {
|
81 | 87 | "name": "release-test-gcc",
|
82 |
| - "inherits": "release-gcc", |
| 88 | + "inherits": ["release-gcc", "test"], |
83 | 89 | "displayName": "Default Release Test Config (GCC)",
|
84 |
| - "description": "Default release build configuration with all tests and examples using GCC", |
85 |
| - "cacheVariables": { |
86 |
| - "YDB_SDK_TESTS": "TRUE", |
87 |
| - "YDB_SDK_EXAMPLES": "TRUE" |
88 |
| - } |
89 |
| - }, |
90 |
| - { |
91 |
| - "name": "release-test-with-ccache-basedir-clang", |
92 |
| - "inherits": "release-test-clang", |
93 |
| - "displayName": "Release Test Config CCACHE_BASEDIR Case (Clang)", |
94 |
| - "description": "Only for the case when using CCACHE_BASEDIR with Clang", |
95 |
| - "cacheVariables": { |
96 |
| - "ARCADIA_ROOT": "../ydb-cpp-sdk", |
97 |
| - "ARCADIA_BUILD_ROOT": "." |
98 |
| - } |
99 |
| - }, |
100 |
| - { |
101 |
| - "name": "release-test-with-ccache-basedir-gcc", |
102 |
| - "inherits": "release-test-gcc", |
103 |
| - "displayName": "Release Test Config CCACHE_BASEDIR Case (GCC)", |
104 |
| - "description": "Only for the case when using CCACHE_BASEDIR with GCC", |
105 |
| - "cacheVariables": { |
106 |
| - "ARCADIA_ROOT": "../ydb-cpp-sdk", |
107 |
| - "ARCADIA_BUILD_ROOT": "." |
108 |
| - } |
| 90 | + "description": "Default release build configuration with all tests and examples using GCC" |
109 | 91 | }
|
110 | 92 | ],
|
111 | 93 | "buildPresets": [
|
|
132 | 114 | }
|
133 | 115 | },
|
134 | 116 | {
|
135 |
| - "name": "release", |
136 |
| - "inherits": "common", |
137 |
| - "configurePreset": "release-base", |
138 |
| - "displayName": "Default Release Tests", |
139 |
| - "environment": { |
140 |
| - "YDB_ENDPOINT": "localhost:2136", |
141 |
| - "YDB_DATABASE": "/local" |
142 |
| - } |
143 |
| - }, |
144 |
| - { |
145 |
| - "name": "release-unit", |
146 |
| - "inherits": "common", |
147 |
| - "configurePreset": "release-base", |
148 |
| - "displayName": "Default Unit Release Tests", |
149 |
| - "filter" : { |
| 117 | + "name": "unit", |
| 118 | + "hidden": true, |
| 119 | + "filter": { |
150 | 120 | "include": {
|
151 | 121 | "label": "unit"
|
152 | 122 | }
|
153 | 123 | }
|
154 | 124 | },
|
155 | 125 | {
|
156 |
| - "name": "release-integration", |
157 |
| - "inherits": "common", |
158 |
| - "configurePreset": "release-base", |
159 |
| - "displayName": "Default Integration Release Tests", |
160 |
| - "filter" : { |
| 126 | + "name": "integration", |
| 127 | + "hidden": true, |
| 128 | + "filter": { |
161 | 129 | "include": {
|
162 | 130 | "label": "integration"
|
163 | 131 | }
|
|
166 | 134 | "YDB_ENDPOINT": "localhost:2136",
|
167 | 135 | "YDB_DATABASE": "/local"
|
168 | 136 | }
|
| 137 | + }, |
| 138 | + { |
| 139 | + "name": "release-clang", |
| 140 | + "inherits": ["common", "unit", "integration"], |
| 141 | + "configurePreset": "release-test-clang", |
| 142 | + "displayName": "Default Release Tests (Clang)" |
| 143 | + }, |
| 144 | + { |
| 145 | + "name": "release-unit-clang", |
| 146 | + "inherits": ["common", "unit"], |
| 147 | + "configurePreset": "release-test-clang", |
| 148 | + "displayName": "Default Unit Release Tests (Clang)" |
| 149 | + }, |
| 150 | + { |
| 151 | + "name": "release-integration-clang", |
| 152 | + "inherits": ["common", "integration"], |
| 153 | + "configurePreset": "release-test-clang", |
| 154 | + "displayName": "Default Integration Release Tests (Clang)" |
| 155 | + }, |
| 156 | + { |
| 157 | + "name": "release-gcc", |
| 158 | + "inherits": ["common", "unit", "integration"], |
| 159 | + "configurePreset": "release-gcc", |
| 160 | + "displayName": "Default Release Tests (GCC)" |
| 161 | + }, |
| 162 | + { |
| 163 | + "name": "release-unit-gcc", |
| 164 | + "inherits": ["common", "unit"], |
| 165 | + "configurePreset": "release-test-gcc", |
| 166 | + "displayName": "Default Unit Release Tests (GCC)" |
| 167 | + }, |
| 168 | + { |
| 169 | + "name": "release-integration-gcc", |
| 170 | + "inherits": ["common", "integration"], |
| 171 | + "configurePreset": "release-test-gcc", |
| 172 | + "displayName": "Default Integration Release Tests (GCC)" |
169 | 173 | }
|
170 | 174 | ]
|
171 | 175 | }
|
0 commit comments