pipeline work
This commit is contained in:
parent
ae954f7e18
commit
d2d2f573c9
2 changed files with 60 additions and 2 deletions
|
|
@ -20,13 +20,13 @@ variables:
|
||||||
# - group: Digital-Infrastructure
|
# - group: Digital-Infrastructure
|
||||||
# - group: ISS-BuildBranches
|
# - group: ISS-BuildBranches
|
||||||
- group: SafelitePlaywright
|
- group: SafelitePlaywright
|
||||||
- group: DigitalCommercialPlaywrightAutomation
|
- group: ISSNextgenAutomationPlaywright
|
||||||
- name: dockerImageName
|
- name: dockerImageName
|
||||||
value: 'playwright-tests'
|
value: 'playwright-tests'
|
||||||
- name: imageTag
|
- name: imageTag
|
||||||
value: '$(Build.BuildId)'
|
value: '$(Build.BuildId)'
|
||||||
- name: totalShards
|
- name: totalShards
|
||||||
value: 6
|
value: 4
|
||||||
- name: IS_REGRESSION
|
- name: IS_REGRESSION
|
||||||
value: 'true'
|
value: 'true'
|
||||||
- name: JIRA_BOARD_ID
|
- name: JIRA_BOARD_ID
|
||||||
58
azure-pipelines-automated-testing-safeco.yml
Normal file
58
azure-pipelines-automated-testing-safeco.yml
Normal file
|
|
@ -0,0 +1,58 @@
|
||||||
|
trigger: none
|
||||||
|
schedules:
|
||||||
|
- cron: 0 9 * * MON-FRI
|
||||||
|
always: true
|
||||||
|
displayName: Daily Test Automation Run for ISS-NextGen
|
||||||
|
branches:
|
||||||
|
include:
|
||||||
|
- develop
|
||||||
|
pool: 'Default'
|
||||||
|
|
||||||
|
resources:
|
||||||
|
repositories:
|
||||||
|
- repository: AzureDevOps
|
||||||
|
type: github
|
||||||
|
name: Safelite/AzureDevOps
|
||||||
|
endpoint: Safelite
|
||||||
|
ref: refs/tags/t5.7.53
|
||||||
|
|
||||||
|
variables:
|
||||||
|
# - group: Digital-Infrastructure
|
||||||
|
# - group: ISS-BuildBranches
|
||||||
|
- group: SafelitePlaywright
|
||||||
|
- group: ISSNextgenAutomationPlaywright
|
||||||
|
- name: dockerImageName
|
||||||
|
value: 'playwright-tests'
|
||||||
|
- name: imageTag
|
||||||
|
value: '$(Build.BuildId)'
|
||||||
|
- name: totalShards
|
||||||
|
value: 4
|
||||||
|
- name: IS_REGRESSION
|
||||||
|
value: 'true'
|
||||||
|
- name: JIRA_BOARD_ID
|
||||||
|
value: '853'
|
||||||
|
- name: JIRA_EPIC_KEY
|
||||||
|
value: 'INSR-414'
|
||||||
|
- name: JIRA_PROJECT_KEY
|
||||||
|
value: 'INSR'
|
||||||
|
|
||||||
|
stages:
|
||||||
|
- stage: TestPr
|
||||||
|
displayName: Run Playwright Test
|
||||||
|
jobs:
|
||||||
|
- template: templates/digital/playwright-test.yml@AzureDevOps
|
||||||
|
parameters:
|
||||||
|
applicationType: 'vue'
|
||||||
|
totalShards: ${{ variables.totalShards }}
|
||||||
|
targetUrl: $(BASE_URL)
|
||||||
|
dockerFileName: 'Dockerfile.playwright'
|
||||||
|
isRegression: ${{ variables.IS_REGRESSION }}
|
||||||
|
filterTags: 'Safeco'
|
||||||
|
playwrightTestsPath: 'playwright-tests'
|
||||||
|
npmServePath: '.'
|
||||||
|
npmrcPath: 'playwright-tests/.npmrc'
|
||||||
|
secrets:
|
||||||
|
CCIS_API_AUTH: $(CCIS_API_AUTH)
|
||||||
|
JIRA_API_KEY: $(JIRA_API_KEY)
|
||||||
|
JIRA_USERNAME: $(JIRA_USERNAME)
|
||||||
|
JIRA_SERVER: $(JIRA_SERVER)
|
||||||
Loading…
Reference in a new issue