Skip to content

Commit

Permalink
init CI pipeline (#6731)
Browse files Browse the repository at this point in the history
* init CI pipeline

* correct module and artifact name

* Update ci.yml
  • Loading branch information
mssfang authored and mitchdenny committed Dec 10, 2019
1 parent 87d6e0e commit 778c292
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
43 changes: 43 additions & 0 deletions sdk/textanalytics/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# DO NOT EDIT THIS FILE
# This file is generated automatically and any changes will be lost.

resources:
repositories:
- repository: azure-sdk-build-tools
type: git
name: internal/azure-sdk-build-tools
- repository: azure-sdk-tools
type: github
name: Azure/azure-sdk-tools
endpoint: azure

trigger:
branches:
include:
- master
- feature/*
- hotfix/*
- release/*
paths:
include:
- sdk/textanalytics/

pr:
branches:
include:
- master
- feature/*
- hotfix/*
- release/*
paths:
include:
- sdk/textanalytics/

stages:
- template: ../../eng/pipelines/templates/stages/archetype-sdk-client.yml
parameters:
ServiceDirectory: textanalytics
Artifacts:
- name: azure-ai-textanalytics
safeName: azureaitextanalytics
stagingProfileId: 88192f04117501
28 changes: 28 additions & 0 deletions sdk/textanalytics/pom.service.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
<!-- Copyright (c) Microsoft Corporation. All rights reserved.
Licensed under the MIT License. -->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.azure</groupId>
<artifactId>azure-textanalytics-service</artifactId>
<packaging>pom</packaging>
<version>1.0.0</version> <!-- Need not change for every release-->
<profiles>
<profile>
<id>client</id>
<activation>
<property>
<name>env.SDKTYPE</name>
<value>!data</value>
</property>
</activation>
<modules>
<module>../core/azure-core</module>
<module>../core/azure-core-test</module>
<module>../core/azure-core-http-netty</module>
<module>../identity/azure-identity</module>
<module>azure-ai-textanalytics</module>
</modules>
</profile>
</profiles>
</project>

0 comments on commit 778c292

Please sign in to comment.