|
40 | 40 | "displayName": "Default Release Config",
|
41 | 41 | "description": "Default release build configuration using Ninja generator and Clang compiler",
|
42 | 42 | "binaryDir": "${sourceDir}/../build"
|
| 43 | + }, |
| 44 | + { |
| 45 | + "name": "release-test", |
| 46 | + "inherits": "release", |
| 47 | + "displayName": "Default Release Test Config", |
| 48 | + "description": "Default release build configuration with all tests and examples", |
| 49 | + "cacheVariables": { |
| 50 | + "YDB_SDK_TESTS": "TRUE", |
| 51 | + "YDB_SDK_EXAMPLES": "TRUE" |
| 52 | + } |
| 53 | + }, |
| 54 | + { |
| 55 | + "name": "release-test-with-ccache-basedir", |
| 56 | + "inherits": "release-test", |
| 57 | + "displayName": "Release Test Config CCACHE_BASEDIR Case", |
| 58 | + "description": "Only for the case when using CCACHE_BASEDIR", |
| 59 | + "cacheVariables": { |
| 60 | + "ARCADIA_ROOT": "../ydb-cpp-sdk", |
| 61 | + "ARCADIA_BUILD_ROOT": "." |
| 62 | + } |
43 | 63 | }
|
44 | 64 | ],
|
45 | 65 | "buildPresets": [
|
|
51 | 71 | ],
|
52 | 72 | "testPresets": [
|
53 | 73 | {
|
54 |
| - "name": "release", |
55 |
| - "configurePreset": "release", |
56 |
| - "displayName": "Default Release Tests", |
| 74 | + "name": "common", |
| 75 | + "hidden": true, |
57 | 76 | "output": {
|
58 | 77 | "outputOnFailure": true
|
59 | 78 | },
|
60 | 79 | "execution": {
|
61 | 80 | "timeout": 1200
|
62 |
| - }, |
| 81 | + } |
| 82 | + }, |
| 83 | + { |
| 84 | + "name": "release", |
| 85 | + "inherits": "common", |
| 86 | + "configurePreset": "release-test", |
| 87 | + "displayName": "Default Release Tests", |
63 | 88 | "environment": {
|
64 | 89 | "YDB_ENDPOINT": "localhost:2136",
|
65 | 90 | "YDB_DATABASE": "/local"
|
66 | 91 | }
|
67 | 92 | },
|
68 | 93 | {
|
69 | 94 | "name": "release-unit",
|
70 |
| - "configurePreset": "release", |
| 95 | + "inherits": "common", |
| 96 | + "configurePreset": "release-test", |
71 | 97 | "displayName": "Default Unit Release Tests",
|
72 | 98 | "filter" : {
|
73 | 99 | "include": {
|
74 | 100 | "label": "unit"
|
75 | 101 | }
|
76 |
| - }, |
77 |
| - "output": { |
78 |
| - "outputOnFailure": true |
79 |
| - }, |
80 |
| - "execution": { |
81 |
| - "timeout": 1200 |
82 | 102 | }
|
83 | 103 | },
|
84 | 104 | {
|
85 | 105 | "name": "release-integration",
|
86 |
| - "configurePreset": "release", |
| 106 | + "inherits": "common", |
| 107 | + "configurePreset": "release-test", |
87 | 108 | "displayName": "Default Integration Release Tests",
|
88 |
| - "output": { |
89 |
| - "outputOnFailure": true |
90 |
| - }, |
91 | 109 | "filter" : {
|
92 | 110 | "include": {
|
93 | 111 | "label": "integration"
|
94 | 112 | }
|
95 | 113 | },
|
96 |
| - "execution": { |
97 |
| - "timeout": 1200 |
98 |
| - }, |
99 | 114 | "environment": {
|
100 | 115 | "YDB_ENDPOINT": "localhost:2136",
|
101 | 116 | "YDB_DATABASE": "/local"
|
|
0 commit comments