Skip to content

Commit 8c926b7

Browse files
authored
feat: add ab e2e tme pipeline (#8078)
1 parent 7d23cdc commit 8c926b7

File tree

2 files changed

+16
-1
lines changed

2 files changed

+16
-1
lines changed

.pipelines/e2e-tme.yaml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: $(Date:yyyyMMdd)$(Rev:.r)
2+
variables:
3+
SKIP_E2E_TESTS: false
4+
5+
jobs:
6+
- template: ./templates/e2e-template.yaml
7+
parameters:
8+
name: Linux Tests
9+
IgnoreScenariosWithMissingVhd: false
10+
variableGroup: ab-e2e-tme
11+

.pipelines/templates/e2e-template.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,16 @@ parameters:
66
- name: IgnoreScenariosWithMissingVhd
77
type: boolean
88
displayName: Ignore tests where the VHD can't be loaded
9+
- name: variableGroup
10+
type: string
11+
displayName: Variable group to use for e2e tests
12+
default: ab-e2e
913

1014
jobs:
1115
- job: e2e
1216
condition: and(succeeded(), ne(variables.SKIP_E2E_TESTS, 'true'))
1317
variables:
14-
- group: ab-e2e # all variables prefixed with E2E_* come from this variable group
18+
- group: ${{parameters.variableGroup}} # all variables prefixed with E2E_* come from this variable group
1519
pool:
1620
name: $(E2E_POOL_NAME)
1721
timeoutInMinutes: 90

0 commit comments

Comments
 (0)