From a9cdb0b5b4b0ed54b4520f190c47fa3e79d734a4 Mon Sep 17 00:00:00 2001 From: Anton Evseev Date: Thu, 4 Apr 2019 22:00:25 +0300 Subject: [PATCH] Stub YML config for validating NRP PRs --- .azure-pipelines/network-validation.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .azure-pipelines/network-validation.yml diff --git a/.azure-pipelines/network-validation.yml b/.azure-pipelines/network-validation.yml new file mode 100644 index 000000000000..b43a911a607c --- /dev/null +++ b/.azure-pipelines/network-validation.yml @@ -0,0 +1,22 @@ +trigger: none +pr: + branches: + include: + - network-* + paths: + include: + - specification/network/* + +pool: + vmImage: vs2017-win2016 + +steps: + - powershell: | + & "C:/Program Files (x86)/Microsoft SDKs/Windows/v10.0A/bin/NETFX 4.6.1 Tools/sn.exe" -Vr *,31bf3856ad364e35 + displayName: Bypass Strong Name validation + - task: NodeTool@0 + inputs: + versionSpec: 10.x + - powershell: | + & "npm" install autorest -g + displayName: Install autorest