forked from Azure/azure-cli-extensions
-
Notifications
You must be signed in to change notification settings - Fork 21
/
k8s-custom-pipelines.yml
210 lines (185 loc) · 6.19 KB
/
k8s-custom-pipelines.yml
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
trigger:
batch: true
branches:
include:
- k8s-extension/public
- k8s-extension/private
pr:
branches:
include:
- k8s-extension/public
- k8s-extension/private
stages:
- stage: BuildTestPublishExtension
displayName: "Build, Test, and Publish Extension"
variables:
TEST_PATH: $(Agent.BuildDirectory)/s/testing
CLI_REPO_PATH: $(Agent.BuildDirectory)/s
SUBSCRIPTION_ID: "15c06b1b-01d6-407b-bb21-740b8617dea3"
RESOURCE_GROUP: "K8sPartnerExtensionTest"
BASE_CLUSTER_NAME: "k8s-extension-cluster"
IS_PRIVATE_BRANCH: $[or(eq(variables['Build.SourceBranch'], 'refs/heads/k8s-extension/private'), eq(variables['System.PullRequest.TargetBranch'], 'k8s-extension/private'))]
jobs:
- template: ./templates/run-test.yml
parameters:
jobName: AzureDefender
path: ./test/extensions/public/AzureDefender.Tests.ps1
- template: ./templates/run-test.yml
parameters:
jobName: AzureMLKubernetes
path: ./test/extensions/public/AzureMLKubernetes.Tests.ps1
- template: ./templates/run-test.yml
parameters:
jobName: AzureMonitorMetrics
path: ./test/extensions/public/AzureMonitorMetrics.Tests.ps1
- template: ./templates/run-test.yml
parameters:
jobName: AzureMonitor
path: ./test/extensions/public/AzureMonitor.Tests.ps1
- template: ./templates/run-test.yml
parameters:
jobName: AzurePolicy
path: ./test/extensions/public/AzurePolicy.Tests.ps1
- template: ./templates/run-test.yml
parameters:
jobName: ExtensionTypes
path: ./test/extensions/public/ExtensionTypes.Tests.ps1
- template: ./templates/run-test.yml
parameters:
jobName: OpenServiceMesh
path: ./test/extensions/public/OpenServiceMesh.Tests.ps1
- template: ./templates/run-test.yml
parameters:
jobName: Flux
path: ./test/extensions/public/Flux.Tests.ps1
- job: BuildPublishExtension
pool:
vmImage: 'ubuntu-20.04'
displayName: "Build and Publish the Extension Artifact"
variables:
CLI_REPO_PATH: $(Agent.BuildDirectory)/s
workingDirectory: $(CLI_REPO_PATH)
displayName: "Setup and Build Extension with azdev"
steps:
- template: ./templates/build-extension.yml
parameters:
CLI_REPO_PATH: $(CLI_REPO_PATH)
IS_PRIVATE_BRANCH: $(IS_PRIVATE_BRANCH)
- task: PublishBuildArtifacts@1
inputs:
pathToPublish: $(CLI_REPO_PATH)/dist
- stage: AzureCLIOfficial
displayName: "Azure Official CLI Code Checks"
dependsOn: []
jobs:
- job: CheckLicenseHeader
displayName: "Check License"
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.10'
inputs:
versionSpec: 3.10
- bash: |
set -ev
# prepare and activate virtualenv
python -m venv env/
chmod +x ./env/bin/activate
source ./env/bin/activate
# clone azure-cli
git clone -q --single-branch -b dev https://github.com/Azure/azure-cli.git ../azure-cli
pip install --upgrade pip
pip install -q azdev
azdev setup -c ../azure-cli -r ./
azdev --version
az --version
azdev verify license
- job: StaticAnalysis
displayName: "Static Analysis"
pool:
vmImage: 'ubuntu-20.04'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.6'
inputs:
versionSpec: 3.6
- bash: pip install wheel==0.30.0 pylint==1.9.5 flake8==3.5.0 requests
displayName: 'Install wheel, pylint, flake8, requests'
- job: IndexVerify
displayName: "Verify Extensions Index"
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.10'
inputs:
versionSpec: 3.10
- bash: |
#!/usr/bin/env bash
set -ev
pip install wheel==0.30.0 requests packaging
export CI="ADO"
python ./scripts/ci/test_index.py -v
displayName: "Verify Extensions Index"
- job: SourceTests
displayName: "Integration Tests, Build Tests"
pool:
vmImage: 'ubuntu-latest'
strategy:
matrix:
Python38:
python.version: '3.8'
Python39:
python.version: '3.9'
Python310:
python.version: '3.10'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python $(python.version)'
inputs:
versionSpec: '$(python.version)'
- bash: pip install wheel==0.30.0
displayName: 'Install wheel==0.30.0'
- bash: |
set -ev
# prepare and activate virtualenv
pip install virtualenv
python -m virtualenv venv/
source ./venv/bin/activate
# clone azure-cli
git clone --single-branch -b dev https://github.com/Azure/azure-cli.git ../azure-cli
pip install --upgrade pip
pip install azdev
azdev --version
azdev setup -c ../azure-cli -r ./ -e k8s-extension
azdev test k8s-extension
displayName: 'Run integration test and build test'
- job: LintModifiedExtensions
displayName: "CLI Linter on Modified Extensions"
pool:
vmImage: 'ubuntu-latest'
steps:
- task: UsePythonVersion@0
displayName: 'Use Python 3.10'
inputs:
versionSpec: 3.10
- bash: |
set -ev
# prepare and activate virtualenv
pip install virtualenv
python -m virtualenv venv/
source ./venv/bin/activate
# clone azure-cli
git clone --single-branch -b dev https://github.com/Azure/azure-cli.git ../azure-cli
pip install --upgrade pip
pip install azdev
azdev --version
azdev setup -c ../azure-cli -r ./ -e k8s-extension
# overwrite the default AZURE_EXTENSION_DIR set by ADO
AZURE_EXTENSION_DIR=~/.azure/cliextensions az --version
AZURE_EXTENSION_DIR=~/.azure/cliextensions azdev linter --include-whl-extensions k8s-extension
displayName: "CLI Linter on Modified Extension"
env:
ADO_PULL_REQUEST_LATEST_COMMIT: $(System.PullRequest.SourceCommitId)
ADO_PULL_REQUEST_TARGET_BRANCH: $(System.PullRequest.TargetBranch)