Skip to content

Commit ae905c4

Browse files
committed
Update azure template
1 parent 559588d commit ae905c4

File tree

3 files changed

+18
-6
lines changed

3 files changed

+18
-6
lines changed

.azure/pipelines/ci.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -470,8 +470,8 @@ stages:
470470
- template: jobs/default-build.yml
471471
parameters:
472472
condition: ne(variables['SkipTests'], 'true')
473-
jobName: Windows_Templates_Test
474-
jobDisplayName: "Test: Templates - Windows Server 2016 x64"
473+
jobName: Windows_Integration_Test
474+
jobDisplayName: "Test: Integration - Windows Server 2016 x64"
475475
agentOs: Windows
476476
isTestingJob: true
477477
steps:
@@ -481,16 +481,18 @@ stages:
481481
displayName: Pack Templates
482482
- script: ./src/ProjectTemplates/build.cmd -ci -test -NoRestore -NoBuild -NoBuilddeps "/p:RunTemplateTests=true /bl:artifacts/log/template.test.binlog"
483483
displayName: Test Templates
484+
- script: ./src/Grpc/build.cmd -ci -test -NoRestore -NoBuild -NoBuilddeps "/bl:artifacts/log/grpc.test.binlog"
485+
displayName: Test gRPC interop
484486
artifacts:
485-
- name: Windows_Test_Templates_Dumps
487+
- name: Windows_Test_Integration_Dumps
486488
path: artifacts/dumps/
487489
publishOnError: true
488490
includeForks: true
489-
- name: Windows_Test_Templates_Logs
491+
- name: Windows_Test_Integration_Logs
490492
path: artifacts/log/
491493
publishOnError: true
492494
includeForks: true
493-
- name: Windows_Test_Templates_Results
495+
- name: Windows_Test_Integration_Results
494496
path: artifacts/TestResults/
495497
publishOnError: true
496498
includeForks: true
@@ -687,7 +689,7 @@ stages:
687689
- Linux_Test
688690
- MacOS_Test
689691
- Source_Build
690-
- Windows_Templates_Test
692+
- Windows_Integration_Test
691693
- Windows_Test
692694
pool:
693695
vmImage: vs2017-win2016

src/Grpc/build.cmd

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
@ECHO OFF
2+
SET RepoRoot=%~dp0..\..
3+
%RepoRoot%\build.cmd -projects %~dp0*\*.*proj %*

src/Grpc/build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/usr/bin/env bash
2+
3+
set -euo pipefail
4+
5+
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
6+
repo_root="$DIR/../.."
7+
"$repo_root/build.sh" --projects "$DIR/**/*.*proj" "$@"

0 commit comments

Comments
 (0)