-
Notifications
You must be signed in to change notification settings - Fork 582
/
azure-pipeline.release.yml
79 lines (63 loc) · 2.21 KB
/
azure-pipeline.release.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
name: $(Date:yyyyMMdd)$(Rev:.r)
trigger:
branches:
include:
- main
pr: none
resources:
repositories:
- repository: templates
type: github
name: microsoft/vscode-engineering
ref: main
endpoint: Monaco
parameters:
- name: publishExtension
# allow-any-unicode-next-line
displayName: 🚀 Publish Extension
type: boolean
default: false
extends:
template: azure-pipelines/extension/stable.yml@templates
parameters:
ghCreateRelease: false
l10nSourcePaths: ./src
buildSteps:
- script: yarn install --frozen-lockfile --check-files
displayName: Install dependencies
retryCountOnTaskFailure: 3
- script: yarn run bundle
displayName: Compile
testSteps:
- script: yarn install --frozen-lockfile --check-files
displayName: Install dependencies
retryCountOnTaskFailure: 3
- script: yarn run bundle
displayName: Compile
- bash: |
/usr/bin/Xvfb :99 -screen 0 1024x768x24 > /dev/null 2>&1 &
echo ">>> Started xvfb"
displayName: Start xvfb
- script: yarn run test
displayName: Run test suite
env:
DISPLAY: ':99.0'
TEST_JUNIT_XML_PATH: $(Agent.HomeDirectory)/test-results.xml
# - script: yarn run browsertest --browserType=chromium
# displayName: Run test suite (chromium)
# env:
# TEST_JUNIT_XML_PATH: $(Agent.HomeDirectory)/browser-chromium-test-results.xml
# - script: yarn run browsertest --browserType=firefox
# displayName: Run test suite (firefox)
# env:
# TEST_JUNIT_XML_PATH: $(Agent.HomeDirectory)/browser-firefox-test-results.xml
# - script: yarn run browsertest --browserType=webkit
# displayName: Run test suite (webkit)
# env:
# TEST_JUNIT_XML_PATH: $(Agent.HomeDirectory)/browser-webkit-test-results.xml
tsa:
config:
areaPath: 'Visual Studio Code Web Extensions'
serviceTreeID: '1788a767-5861-45fb-973b-c686b67c5541'
enabled: true
publishExtension: ${{ and(parameters.publishExtension, eq(variables['Build.Repository.Uri'], 'https://github.com/microsoft/vscode-pull-request-github.git')) }}