|
1 | 1 | pool:
|
2 |
| - vmImage: 'macOS-10.15' |
| 2 | + vmImage: "macOS-10.15" |
3 | 3 |
|
4 | 4 | variables:
|
5 |
| -- name: release |
6 |
| - value: false |
| 5 | + - name: release |
| 6 | + value: false |
7 | 7 |
|
8 | 8 | steps:
|
9 |
| -- task: NodeTool@0 |
10 |
| - displayName: 'Use Node 14.x' |
11 |
| - inputs: |
12 |
| - versionSpec: 14.X |
13 |
| - |
14 |
| -- task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
15 |
| - displayName: Install dependencies |
16 |
| - inputs: |
17 |
| - arguments: '--frozen-lockfile' |
18 |
| - |
19 |
| -- task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
20 |
| - displayName: Install gulp-cli |
21 |
| - inputs: |
22 |
| - arguments: 'global add [email protected]' |
23 |
| - |
24 |
| -- bash: | |
25 |
| - export BUILDMACHINE=true |
26 |
| - export VsMsSqlEnv=dev |
27 |
| - node node_modules/gulp/bin/gulp.js build --gulpfile $(Build.SourcesDirectory)/gulpfile.js |
28 |
| - displayName: 'gulp build (dev)' |
29 |
| - condition: and(succeeded(), eq(variables['release'], false)) |
30 |
| - |
31 |
| -- bash: | |
32 |
| - export BUILDMACHINE=true |
33 |
| - export VsMsSqlEnv=production |
34 |
| - node node_modules/gulp/bin/gulp.js build --gulpfile $(Build.SourcesDirectory)/gulpfile.js |
35 |
| - displayName: 'gulp build (release)' |
36 |
| - condition: and(succeeded(), eq(variables['release'], true)) |
37 |
| - |
38 |
| -- bash: 'gulp lint' |
39 |
| - displayName: 'gulp lint' |
40 |
| - |
41 |
| -- task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
42 |
| - displayName: Install vsce |
43 |
| - inputs: |
44 |
| - arguments: 'global add [email protected]' |
45 |
| - |
46 |
| -- task: gulp@0 |
47 |
| - displayName: 'gulp package:offline' |
48 |
| - inputs: |
49 |
| - targets: 'package:offline' |
50 |
| - |
51 |
| -- task: gulp@0 |
52 |
| - displayName: 'gulp package:online' |
53 |
| - inputs: |
54 |
| - targets: 'package:online' |
55 |
| - |
56 |
| -- task: CopyFiles@2 |
57 |
| - displayName: 'Copy VSIXs to artifacts directory' |
58 |
| - inputs: |
59 |
| - SourceFolder: '$(Build.SourcesDirectory)' |
60 |
| - Contents: '*.vsix' |
61 |
| - TargetFolder: '$(Build.ArtifactStagingDirectory)' |
62 |
| - |
63 |
| -- task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
64 |
| - displayName: Install ads-adal-library dependencies |
65 |
| - inputs: |
66 |
| - projectDirectory: $(Build.SourcesDirectory)/lib/ads-adal-library |
67 |
| - arguments: --frozen-lockfile |
68 |
| - |
69 |
| -- task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
70 |
| - displayName: Build ads-adal-library |
71 |
| - inputs: |
72 |
| - projectDirectory: $(Build.SourcesDirectory)/lib/ads-adal-library |
73 |
| - arguments: build |
74 |
| - |
75 |
| -- task: Npm@1 |
76 |
| - displayName: Package ads-adal-library |
77 |
| - inputs: |
78 |
| - command: custom |
79 |
| - customCommand: pack |
80 |
| - workingDir: $(Build.SourcesDirectory)/lib/ads-adal-library |
81 |
| - |
82 |
| -- task: CopyFiles@2 |
83 |
| - displayName: 'Copy ads-adal-library package to artifacts directory' |
84 |
| - inputs: |
85 |
| - SourceFolder: $(Build.SourcesDirectory)/lib/ads-adal-library |
86 |
| - Contents: '*.tgz' |
87 |
| - TargetFolder: $(Build.ArtifactStagingDirectory) |
88 |
| - |
89 |
| -- task: PublishBuildArtifacts@1 |
90 |
| - displayName: 'Publish Artifact: drop' |
91 |
| - |
92 |
| -- script: | |
93 |
| - brew update |
94 |
| - brew install --cask visual-studio-code |
95 |
| - displayName: 'Install VS Code for testing' |
96 |
| - |
97 |
| -- task: gulp@0 |
98 |
| - displayName: 'gulp ext:install-service' |
99 |
| - inputs: |
100 |
| - targets: 'ext:install-service' |
101 |
| - |
102 |
| -- task: gulp@0 |
103 |
| - displayName: 'gulp cover:jenkins' |
104 |
| - inputs: |
105 |
| - targets: 'cover:jenkins' |
106 |
| - publishJUnitResults: true |
107 |
| - testResultsFiles: '$(Build.SourcesDirectory)/test-reports/*.xml' |
108 |
| - enabled: false |
109 |
| - continueOnError: true |
110 |
| - |
111 |
| -- task: PublishCodeCoverageResults@1 |
112 |
| - displayName: 'Publish code coverage from $(Build.SourcesDirectory)/coverage/cobertura-coverage.xml' |
113 |
| - inputs: |
114 |
| - codeCoverageTool: Cobertura |
115 |
| - summaryFileLocation: '$(Build.SourcesDirectory)/coverage/cobertura-coverage.xml' |
116 |
| - enabled: false |
117 |
| - |
118 |
| -- task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0 |
119 |
| - displayName: 'Component Detection' |
120 |
| - inputs: |
121 |
| - failOnAlert: true |
122 |
| - |
| 9 | + - task: NodeTool@0 |
| 10 | + displayName: "Use Node 14.x" |
| 11 | + inputs: |
| 12 | + versionSpec: 14.X |
| 13 | + |
| 14 | + - task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
| 15 | + displayName: Install dependencies |
| 16 | + inputs: |
| 17 | + arguments: "--frozen-lockfile" |
| 18 | + |
| 19 | + - task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
| 20 | + displayName: Install gulp-cli |
| 21 | + inputs: |
| 22 | + arguments: "global add [email protected]" |
| 23 | + |
| 24 | + - bash: | |
| 25 | + export BUILDMACHINE=true |
| 26 | + export VsMsSqlEnv=dev |
| 27 | + node node_modules/gulp/bin/gulp.js build --gulpfile $(Build.SourcesDirectory)/gulpfile.js |
| 28 | + displayName: "gulp build (dev)" |
| 29 | + condition: and(succeeded(), eq(variables['release'], false)) |
| 30 | +
|
| 31 | + - bash: | |
| 32 | + export BUILDMACHINE=true |
| 33 | + export VsMsSqlEnv=production |
| 34 | + node node_modules/gulp/bin/gulp.js build --gulpfile $(Build.SourcesDirectory)/gulpfile.js |
| 35 | + displayName: "gulp build (release)" |
| 36 | + condition: and(succeeded(), eq(variables['release'], true)) |
| 37 | +
|
| 38 | + - bash: "gulp lint" |
| 39 | + displayName: "gulp lint" |
| 40 | + |
| 41 | + - task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
| 42 | + displayName: Install vsce |
| 43 | + inputs: |
| 44 | + arguments: "global add [email protected]" |
| 45 | + |
| 46 | + - task: gulp@0 |
| 47 | + displayName: "gulp package:offline" |
| 48 | + inputs: |
| 49 | + targets: "package:offline" |
| 50 | + |
| 51 | + - task: gulp@0 |
| 52 | + displayName: "gulp package:online" |
| 53 | + inputs: |
| 54 | + targets: "package:online" |
| 55 | + |
| 56 | + - task: CopyFiles@2 |
| 57 | + displayName: "Copy VSIXs to artifacts directory" |
| 58 | + inputs: |
| 59 | + SourceFolder: "$(Build.SourcesDirectory)" |
| 60 | + Contents: "*.vsix" |
| 61 | + TargetFolder: "$(Build.ArtifactStagingDirectory)" |
| 62 | + |
| 63 | + - task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
| 64 | + displayName: Install ads-adal-library dependencies |
| 65 | + inputs: |
| 66 | + projectDirectory: $(Build.SourcesDirectory)/lib/ads-adal-library |
| 67 | + arguments: --frozen-lockfile |
| 68 | + |
| 69 | + - task: geeklearningio.gl-vsts-tasks-yarn.yarn-task.Yarn@3 |
| 70 | + displayName: Build ads-adal-library |
| 71 | + inputs: |
| 72 | + projectDirectory: $(Build.SourcesDirectory)/lib/ads-adal-library |
| 73 | + arguments: build |
| 74 | + |
| 75 | + - task: Npm@1 |
| 76 | + displayName: Package ads-adal-library |
| 77 | + inputs: |
| 78 | + command: custom |
| 79 | + customCommand: pack |
| 80 | + workingDir: $(Build.SourcesDirectory)/lib/ads-adal-library |
| 81 | + |
| 82 | + - task: CopyFiles@2 |
| 83 | + displayName: "Copy ads-adal-library package to artifacts directory" |
| 84 | + inputs: |
| 85 | + SourceFolder: $(Build.SourcesDirectory)/lib/ads-adal-library |
| 86 | + Contents: "*.tgz" |
| 87 | + TargetFolder: $(Build.ArtifactStagingDirectory) |
| 88 | + |
| 89 | + - task: PublishBuildArtifacts@1 |
| 90 | + displayName: "Publish Artifact: drop" |
| 91 | + |
| 92 | + - script: | |
| 93 | + brew update |
| 94 | + brew install --cask visual-studio-code |
| 95 | + displayName: "Install VS Code for testing" |
| 96 | +
|
| 97 | + - task: gulp@0 |
| 98 | + displayName: "gulp ext:install-service" |
| 99 | + inputs: |
| 100 | + targets: "ext:install-service" |
| 101 | + |
| 102 | + - task: gulp@0 |
| 103 | + displayName: "gulp cover:jenkins" |
| 104 | + inputs: |
| 105 | + targets: "cover:jenkins" |
| 106 | + publishJUnitResults: true |
| 107 | + testResultsFiles: "$(Build.SourcesDirectory)/test-reports/*.xml" |
| 108 | + enabled: false |
| 109 | + continueOnError: true |
| 110 | + |
| 111 | + - task: PublishCodeCoverageResults@1 |
| 112 | + displayName: "Publish code coverage from $(Build.SourcesDirectory)/coverage/cobertura-coverage.xml" |
| 113 | + inputs: |
| 114 | + codeCoverageTool: Cobertura |
| 115 | + summaryFileLocation: "$(Build.SourcesDirectory)/coverage/cobertura-coverage.xml" |
| 116 | + enabled: false |
| 117 | + |
| 118 | + - task: ms.vss-governance-buildtask.governance-build-task-component-detection.ComponentGovernanceComponentDetection@0 |
| 119 | + displayName: "Component Detection" |
| 120 | + inputs: |
| 121 | + failOnAlert: true |
0 commit comments