@@ -93,72 +93,72 @@ extends:
93
93
npm run lint
94
94
displayName: 'Lint'
95
95
96
- - job : APIScan
97
- dependsOn : []
98
- pool :
99
- name : 1es-oss-windows-2022-x64
100
- os : Windows
101
- strategy :
102
- matrix :
103
- node_18_x :
104
- node_version : 18.x
105
- steps :
106
- - task : NodeTool@0
107
- inputs :
108
- versionSpec : $(node_version)
109
- displayName : ' Install Node.js'
110
- - pwsh : |
111
- $includes = @'
112
- {
113
- 'target_defaults': {
114
- 'conditions': [
115
- ['OS=="win"', {
116
- 'msvs_settings': {
117
- 'VCCLCompilerTool': {
118
- 'AdditionalOptions': [
119
- '/Zi',
120
- '/FS'
121
- ],
122
- },
123
- 'VCLinkerTool': {
124
- 'AdditionalOptions': [
125
- '/profile'
126
- ]
127
- }
128
- }
129
- }]
130
- ]
131
- }
132
- }
133
- '@
96
+ # - job: APIScan
97
+ # dependsOn: []
98
+ # pool:
99
+ # name: 1es-oss-windows-2022-x64
100
+ # os: Windows
101
+ # strategy:
102
+ # matrix:
103
+ # node_18_x:
104
+ # node_version: 18.x
105
+ # steps:
106
+ # - task: NodeTool@0
107
+ # inputs:
108
+ # versionSpec: $(node_version)
109
+ # displayName: 'Install Node.js'
110
+ # - pwsh: |
111
+ # $includes = @'
112
+ # {
113
+ # 'target_defaults': {
114
+ # 'conditions': [
115
+ # ['OS=="win"', {
116
+ # 'msvs_settings': {
117
+ # 'VCCLCompilerTool': {
118
+ # 'AdditionalOptions': [
119
+ # '/Zi',
120
+ # '/FS'
121
+ # ],
122
+ # },
123
+ # 'VCLinkerTool': {
124
+ # 'AdditionalOptions': [
125
+ # '/profile'
126
+ # ]
127
+ # }
128
+ # }
129
+ # }]
130
+ # ]
131
+ # }
132
+ # }
133
+ # '@
134
134
135
- if (!(Test-Path "~/.gyp")) {
136
- mkdir "~/.gyp"
137
- echo $includes > "~/.gyp/include.gypi"
138
- }
139
- displayName: Create include.gypi
140
- - script : |
141
- npm i
142
- displayName: 'Install dependencies and build'
135
+ # if (!(Test-Path "~/.gyp")) {
136
+ # mkdir "~/.gyp"
137
+ # echo $includes > "~/.gyp/include.gypi"
138
+ # }
139
+ # displayName: Create include.gypi
140
+ # - script: |
141
+ # npm i
142
+ # displayName: 'Install dependencies and build'
143
143
144
- - task : APIScan@2
145
- inputs :
146
- softwareFolder : $(Build.SourcesDirectory)\build\Release
147
- softwareName : ' vscode-node-pty'
148
- softwareVersionNum : ' 1'
149
- isLargeApp : false
150
- toolVersion : ' Latest'
151
- displayName : Run ApiScan
152
- condition : succeeded()
153
- env :
154
- AzureServicesAuthConnectionString : $(apiscan-connectionstring)
144
+ # - task: APIScan@2
145
+ # inputs:
146
+ # softwareFolder: $(Build.SourcesDirectory)\build\Release
147
+ # softwareName: 'vscode-node-pty'
148
+ # softwareVersionNum: '1'
149
+ # isLargeApp: false
150
+ # toolVersion: 'Latest'
151
+ # displayName: Run ApiScan
152
+ # condition: succeeded()
153
+ # env:
154
+ # AzureServicesAuthConnectionString: $(apiscan-connectionstring)
155
155
156
- - task : PublishSecurityAnalysisLogs@3
157
- inputs :
158
- ArtifactName : CodeAnalysisLogs
159
- ArtifactType : Container
160
- PublishProcessedResults : false
161
- AllTools : true
156
+ # - task: PublishSecurityAnalysisLogs@3
157
+ # inputs:
158
+ # ArtifactName: CodeAnalysisLogs
159
+ # ArtifactType: Container
160
+ # PublishProcessedResults: false
161
+ # AllTools: true
162
162
163
163
- stage : Release
164
164
dependsOn : Build
0 commit comments