summaryrefslogtreecommitdiff
path: root/azure-pipelines.yml
diff options
context:
space:
mode:
authorEdward Thomson <ethomson@edwardthomson.com>2018-10-21 09:12:43 +0100
committerEdward Thomson <ethomson@edwardthomson.com>2018-10-21 09:44:36 +0100
commit4ec597dcacd8af899275c77ec0cc362be5865067 (patch)
tree99e09e2d316e375e566dfd2af76d096add1c5180 /azure-pipelines.yml
parent7c791f3dfcc00b892bcea9a1df63b36737d6eb1a (diff)
downloadlibgit2-4ec597dcacd8af899275c77ec0cc362be5865067.tar.gz
ci: move configuration yaml to its own directory
As the number of each grow, separate the CI build scripts from the YAML definitions.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r--azure-pipelines.yml18
1 files changed, 9 insertions, 9 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml
index db64c7d59..e001e517b 100644
--- a/azure-pipelines.yml
+++ b/azure-pipelines.yml
@@ -11,7 +11,7 @@ jobs:
pool:
vmImage: 'Ubuntu 16.04'
steps:
- - template: ci/docker.yml
+ - template: azure-pipelines/docker.yml
parameters:
imageName: 'libgit2/trusty-openssl:latest'
environmentVariables: |
@@ -24,7 +24,7 @@ jobs:
pool:
vmImage: 'Ubuntu 16.04'
steps:
- - template: ci/docker.yml
+ - template: azure-pipelines/docker.yml
parameters:
imageName: 'libgit2/trusty-mbedtls:latest'
environmentVariables: |
@@ -37,7 +37,7 @@ jobs:
pool:
vmImage: 'Ubuntu 16.04'
steps:
- - template: ci/docker.yml
+ - template: azure-pipelines/docker.yml
parameters:
imageName: 'libgit2/trusty-openssl:latest'
environmentVariables: |
@@ -50,7 +50,7 @@ jobs:
pool:
vmImage: 'Ubuntu 16.04'
steps:
- - template: ci/docker.yml
+ - template: azure-pipelines/docker.yml
parameters:
imageName: 'libgit2/trusty-mbedtls:latest'
environmentVariables: |
@@ -65,7 +65,7 @@ jobs:
steps:
- bash: . '$(Build.SourcesDirectory)/ci/setup-osx.sh'
displayName: Setup
- - template: ci/bash.yml
+ - template: azure-pipelines/bash.yml
parameters:
environmentVariables:
TMPDIR: $(Agent.TempDirectory)
@@ -77,7 +77,7 @@ jobs:
displayName: 'Windows (Visual Studio; amd64)'
pool: Hosted
steps:
- - template: ci/powershell.yml
+ - template: azure-pipelines/powershell.yml
parameters:
environmentVariables:
CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -G"Visual Studio 12 2013 Win64"
@@ -86,7 +86,7 @@ jobs:
displayName: 'Windows (Visual Studio; x86)'
pool: Hosted
steps:
- - template: ci/powershell.yml
+ - template: azure-pipelines/powershell.yml
parameters:
environmentVariables:
CMAKE_OPTIONS: -DMSVC_CRTDBG=ON -G"Visual Studio 12 2013"
@@ -100,7 +100,7 @@ jobs:
env:
TEMP: $(Agent.TempDirectory)
ARCH: amd64
- - template: ci/powershell.yml
+ - template: azure-pipelines/powershell.yml
parameters:
environmentVariables:
CMAKE_OPTIONS: -G"MinGW Makefiles"
@@ -116,7 +116,7 @@ jobs:
env:
TEMP: $(Agent.TempDirectory)
ARCH: x86
- - template: ci/powershell.yml
+ - template: azure-pipelines/powershell.yml
parameters:
environmentVariables:
CMAKE_OPTIONS: -G"MinGW Makefiles"