ci: move configuration yaml to its own directory

As the number of each grow, separate the CI build scripts from
the YAML definitions.
This commit is contained in:
Edward Thomson
2018-10-21 09:12:43 +01:00
parent 7c791f3dfc
commit 4ec597dcac
5 changed files with 9 additions and 9 deletions

View File

@@ -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"