-
Notifications
You must be signed in to change notification settings - Fork 154
Expand file tree
/
Copy pathci.yml
More file actions
67 lines (65 loc) · 2.18 KB
/
ci.yml
File metadata and controls
67 lines (65 loc) · 2.18 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# NOTE: Please refer to https://aka.ms/azsdk/engsys/ci-yaml before editing this file.
trigger:
branches:
include:
- main
- feature/*
- release/*
- hotfix/*
paths:
include:
- sdk/tables
pr:
branches:
include:
- main
- feature/*
- release/*
- hotfix/*
paths:
include:
- sdk/tables
- eng/common/testproxy
extends:
template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
parameters:
ServiceDirectory: tables
# Not running tests on CI but only on LiveTest mode
CtestRegex: azure-data
LineCoverageTarget: 77
BranchCoverageTarget: 42
UseFederatedAuth: true
LiveTestCtestRegex: azure-data
Clouds: Preview
SupportedClouds: Preview
Artifacts:
- Name: azure-data-tables
Path: azure-data-tables
VcpkgPortName: azure-data-tables-cpp
TestEnv:
- Name: STANDARD_STORAGE_CONNECTION_STRING
Value: "DefaultEndpointsProtocol=https;AccountName=account-name;AccountKey=3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333;EndpointSuffix=core.windows.net"
- Name: PREMIUM_FILE_CONNECTION_STRING
Value: "DefaultEndpointsProtocol=https;AccountName=notReal;AccountKey=3333333333333333333333333333333333333333333333333333333333333333333333333333333333333333;EndpointSuffix=core.windows.net"
# Tables related env vars
- Name: STORAGE_TENANT_ID
Value: "72f988bf-86f1-41af-91ab-2d7cd011db47"
- Name: STORAGE_CLIENT_ID
Value: "non-real-client"
- Name: STORAGE_CLIENT_SECRET
Value: "some-secret"
- Name: STORAGE_SUBSCRIPTION_ID
Value: "72f988bf-86f1-41af-91ab-2d7cd011db47"
- Name: STORAGE_RESOURCE_GROUP
Value: "rg-fake"
- Name: TABLES_STORAGE_ACCOUNT_NAME
Value: "account-name"
- Name: LOGGING__LOGLEVEL__DEFAULT
Value: "debug"
- Name: DATA_TABLES_URL
Value: "https://account-name.table.core.windows.net"
CMakeTestOptions:
- Name: Default
Value: ''
- Name: Test
Value: '-DBUILD_TESTING=ON'