Skip to content

Commit e98ac8f

Browse files
authored
Merge pull request Azure#8323 from Azure/ado-checkin-linux
Set up CI with Azure Pipelines
2 parents 05eb1ac + 54d4e6d commit e98ac8f

File tree

67 files changed

+502
-1088
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

67 files changed

+502
-1088
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ before_install:
2525

2626
# https://github.com/travis-ci/travis-ci/issues/1066#issuecomment-383489298
2727
script:
28-
- sudo dotnet msbuild build.proj /t:Full /p:ExcludeAuthenticators=true /p:Configuration=$CONFIG /p:TestsToRun=$TESTS_TO_RUN || travis_terminate 1
28+
- sudo dotnet msbuild build.proj /t:Build;StaticAnalysis;Test /p:ExcludeAuthenticators=true;Configuration=$CONFIG;TestsToRun=$TESTS_TO_RUN
2929

3030
after_success:
3131
- if [ "$TRAVIS_PULL_REQUEST" == "false" ]; then

CodeSign.targets

Lines changed: 0 additions & 97 deletions
This file was deleted.

Repo.props

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
<!-- Custom -->
44
<PropertyGroup>
55
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
6-
<RepoSrc>$(RepoRoot)src\</RepoSrc>
7-
<RepoArtifacts>$(RepoRoot)artifacts\</RepoArtifacts>
8-
<RepoTools>$(RepoRoot)tools\</RepoTools>
6+
<RepoSrc>$(RepoRoot)src/</RepoSrc>
7+
<RepoArtifacts>$(RepoRoot)artifacts/</RepoArtifacts>
8+
<RepoTools>$(RepoRoot)tools/</RepoTools>
9+
<RepoBuild>$(RepoRoot)build/</RepoBuild>
910
</PropertyGroup>
1011

1112
</Project>

azure-powershell-linux.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
resources:
2+
- repo: self
3+
fetchDepth: 1
4+
5+
jobs:
6+
- template: build/jobs.yml
7+
parameters:
8+
vmImage: 'Ubuntu-16.04'

azure-powershell-macOS.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
resources:
2+
- repo: self
3+
fetchDepth: 1
4+
5+
jobs:
6+
- template: build/jobs.yml
7+
parameters:
8+
vmImage: 'macOS-10.13'

azure-powershell-windows.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
resources:
2+
- repo: self
3+
fetchDepth: 1
4+
5+
jobs:
6+
- template: build/jobs.yml
7+
parameters:
8+
vmImage: 'VS2017-Win2016'

0 commit comments

Comments
 (0)