-
Notifications
You must be signed in to change notification settings - Fork 13
/
azure-pipelines-gated.yml
51 lines (49 loc) · 1.17 KB
/
azure-pipelines-gated.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
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
parameters:
- name: RunTests
default: true
trigger: none
pr:
branches:
include:
- main
- release-*
pool:
vmImage: 'ubuntu-22.04'
jobs:
- job: RunTests
timeoutInMinutes: 0
strategy:
maxParallel: 5
matrix:
Helm_3_13_3_single:
HelmVersion: "3.13.3"
TestType: single
Helm_3_13_3_multi:
HelmVersion: "3.13.3"
TestType: multi
Helm_3_14_4_single:
HelmVersion: "3.14.4"
TestType: single
Helm_3_14_4_multi:
HelmVersion: "3.14.4"
TestType: multi
Helm_3_15_4_single:
HelmVersion: "3.15.4"
TestType: single
Helm_3_15_4_multi:
HelmVersion: "3.15.4"
TestType: multi
Helm_3_16_1_single:
HelmVersion: "3.16.1"
TestType: single
Helm_3_16_1_multi:
HelmVersion: "3.16.1"
TestType: multi
steps:
- template: azure-pipelines-test.yml # Template reference
parameters:
RunTests: ${{ parameters.RunTests }}