Merge pull request #3398 from microsoft/hediet/pure-junglefowl

Adds pipeline.yml
pull/3399/head
Ladislau Szomoru 2 years ago committed by GitHub
commit c49fcab8f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,55 @@
###############################################################################################
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License. See License.txt in the project root for license information.
###############################################################################################
name: $(Date:yyyyMMdd)$(Rev:.r)
pr: none
resources:
repositories:
- repository: templates
type: github
name: microsoft/vscode-engineering
ref: main
endpoint: Monaco
- repository: vscode
type: github
name: microsoft/vscode
ref: main
endpoint: Monaco
parameters:
- name: quality
displayName: Quality
type: string
default: latest
values:
- latest
- next
extends:
template: azure-pipelines/npm-package/pipeline.yml@templates
parameters:
npmPackages:
- name: foobar
testPlatforms:
- name: Linux
nodeVersions:
- 16.14.2
- name: MacOS
nodeVersions:
- 16.14.2
- name: Windows
nodeVersions:
- 16.14.2
testSteps:
- checkout: vscode
- script: dir $(Build.SourcesDirectory)
buildSteps:
- script: dir $(Build.SourcesDirectory)
tag: ${{ parameters.quality }}
publishPackage: false
postPublishSteps:
- script: dir .
workingDirectory: $(Build.SourcesDirectory)
Loading…
Cancel
Save