Unverified Commit df33b43d by Edward Thomson Committed by GitHub

Merge pull request #4813 from libgit2/ethomson/ci-rename

Rename "VSTS" to "Azure DevOps" and "Azure Pipelines"
parents f8274204 e2613039
libgit2 - the Git linkable library libgit2 - the Git linkable library
================================== ==================================
[![VSTS Build Status](https://libgit2.visualstudio.com/libgit2/_apis/build/status/libgit2)](https://libgit2.visualstudio.com/libgit2/_build/latest?definitionId=7) [![Azure Pipelines Build Status](https://dev.azure.com/libgit2/libgit2/_apis/build/status/libgit2)](https://dev.azure.com/libgit2/libgit2/_build/latest?definitionId=7)
[![Coverity Scan Build Status](https://scan.coverity.com/projects/639/badge.svg)](https://scan.coverity.com/projects/639) [![Coverity Scan Build Status](https://scan.coverity.com/projects/639/badge.svg)](https://scan.coverity.com/projects/639)
`libgit2` is a portable, pure C implementation of the Git core methods `libgit2` is a portable, pure C implementation of the Git core methods
...@@ -17,7 +17,7 @@ in your favorite language. ...@@ -17,7 +17,7 @@ in your favorite language.
[GitKraken](https://gitkraken.com/) and [gmaster](https://gmaster.io/) [GitKraken](https://gitkraken.com/) and [gmaster](https://gmaster.io/)
and on Git hosting providers like [GitHub](https://github.com/), and on Git hosting providers like [GitHub](https://github.com/),
[GitLab](https://gitlab.com/) and [GitLab](https://gitlab.com/) and
[Visual Studio Team Services](https://visualstudio.com/team-services/). [Azure DevOps](https://azure.com/devops).
We perform the merge every time you click "merge pull request". We perform the merge every time you click "merge pull request".
`libgit2` is licensed under a **very permissive license** (GPLv2 with a special `libgit2` is licensed under a **very permissive license** (GPLv2 with a special
...@@ -107,7 +107,7 @@ What It Can Do ...@@ -107,7 +107,7 @@ What It Can Do
libgit2 provides you with the ability to manage Git repositories in the libgit2 provides you with the ability to manage Git repositories in the
programming language of your choice. It's used in production to power many programming language of your choice. It's used in production to power many
applications including GitHub.com, Plastic SCM and Visual Studio Team Services. applications including GitHub.com, Plastic SCM and Azure DevOps.
It does not aim to replace the git tool or its user-facing commands. Some APIs It does not aim to replace the git tool or its user-facing commands. Some APIs
resemble the plumbing commands as those align closely with the concepts of the resemble the plumbing commands as those align closely with the concepts of the
......
...@@ -11,7 +11,7 @@ jobs: ...@@ -11,7 +11,7 @@ jobs:
pool: pool:
vmImage: 'Ubuntu 16.04' vmImage: 'Ubuntu 16.04'
steps: steps:
- template: ci/vsts-docker.yml - template: ci/docker.yml
parameters: parameters:
imageName: 'libgit2/trusty-openssl:latest' imageName: 'libgit2/trusty-openssl:latest'
environmentVariables: | environmentVariables: |
...@@ -23,7 +23,7 @@ jobs: ...@@ -23,7 +23,7 @@ jobs:
pool: pool:
vmImage: 'Ubuntu 16.04' vmImage: 'Ubuntu 16.04'
steps: steps:
- template: ci/vsts-docker.yml - template: ci/docker.yml
parameters: parameters:
imageName: 'libgit2/trusty-mbedtls:latest' imageName: 'libgit2/trusty-mbedtls:latest'
environmentVariables: | environmentVariables: |
...@@ -36,7 +36,7 @@ jobs: ...@@ -36,7 +36,7 @@ jobs:
pool: pool:
vmImage: 'Ubuntu 16.04' vmImage: 'Ubuntu 16.04'
steps: steps:
- template: ci/vsts-docker.yml - template: ci/docker.yml
parameters: parameters:
imageName: 'libgit2/trusty-openssl:latest' imageName: 'libgit2/trusty-openssl:latest'
environmentVariables: | environmentVariables: |
...@@ -48,7 +48,7 @@ jobs: ...@@ -48,7 +48,7 @@ jobs:
pool: pool:
vmImage: 'Ubuntu 16.04' vmImage: 'Ubuntu 16.04'
steps: steps:
- template: ci/vsts-docker.yml - template: ci/docker.yml
parameters: parameters:
imageName: 'libgit2/trusty-mbedtls:latest' imageName: 'libgit2/trusty-mbedtls:latest'
environmentVariables: | environmentVariables: |
...@@ -63,7 +63,7 @@ jobs: ...@@ -63,7 +63,7 @@ jobs:
steps: steps:
- bash: . '$(Build.SourcesDirectory)/ci/setup-osx.sh' - bash: . '$(Build.SourcesDirectory)/ci/setup-osx.sh'
displayName: Setup displayName: Setup
- template: ci/vsts-bash.yml - template: ci/bash.yml
parameters: parameters:
environmentVariables: environmentVariables:
TMPDIR: $(Agent.TempDirectory) TMPDIR: $(Agent.TempDirectory)
...@@ -74,7 +74,7 @@ jobs: ...@@ -74,7 +74,7 @@ jobs:
displayName: 'Windows (Visual Studio; amd64)' displayName: 'Windows (Visual Studio; amd64)'
pool: Hosted pool: Hosted
steps: steps:
- template: ci/vsts-powershell.yml - template: ci/powershell.yml
parameters: parameters:
environmentVariables: environmentVariables:
CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -G"Visual Studio 12 2013 Win64" CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -G"Visual Studio 12 2013 Win64"
...@@ -83,7 +83,7 @@ jobs: ...@@ -83,7 +83,7 @@ jobs:
displayName: 'Windows (Visual Studio; x86)' displayName: 'Windows (Visual Studio; x86)'
pool: Hosted pool: Hosted
steps: steps:
- template: ci/vsts-powershell.yml - template: ci/powershell.yml
parameters: parameters:
environmentVariables: environmentVariables:
CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -G"Visual Studio 12 2013" CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -G"Visual Studio 12 2013"
...@@ -97,7 +97,7 @@ jobs: ...@@ -97,7 +97,7 @@ jobs:
env: env:
TEMP: $(Agent.TempDirectory) TEMP: $(Agent.TempDirectory)
ARCH: amd64 ARCH: amd64
- template: ci/vsts-powershell.yml - template: ci/powershell.yml
parameters: parameters:
environmentVariables: environmentVariables:
CMAKE_OPTIONS: -G"MinGW Makefiles" CMAKE_OPTIONS: -G"MinGW Makefiles"
...@@ -113,7 +113,7 @@ jobs: ...@@ -113,7 +113,7 @@ jobs:
env: env:
TEMP: $(Agent.TempDirectory) TEMP: $(Agent.TempDirectory)
ARCH: x86 ARCH: x86
- template: ci/vsts-powershell.yml - template: ci/powershell.yml
parameters: parameters:
environmentVariables: environmentVariables:
CMAKE_OPTIONS: -G"MinGW Makefiles" CMAKE_OPTIONS: -G"MinGW Makefiles"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment