diff options
author | Edward Thomson <ethomson@edwardthomson.com> | 2018-10-21 10:34:38 +0100 |
---|---|---|
committer | Edward Thomson <ethomson@edwardthomson.com> | 2018-10-21 10:38:33 +0100 |
commit | 7c5571690acef4a640f30e754bde5e133a66c33e (patch) | |
tree | 558105652b1171a0023969483898f2e327bc816a /azure-pipelines.yml | |
parent | 415a8ae9c9b6ac18f0524b6af8e58408b426457d (diff) | |
download | libgit2-7c5571690acef4a640f30e754bde5e133a66c33e.tar.gz |
ci: use trusty-amd64 for openssl and mbedtlsethomson/qemu-build
We don't need two separate docker images for OpenSSL and mbedTLS.
They've been combined into a single image `trusty-amd64` that supports
both.
Diffstat (limited to 'azure-pipelines.yml')
-rw-r--r-- | azure-pipelines.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/azure-pipelines.yml b/azure-pipelines.yml index cec8a4765..85eb1bce0 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -13,7 +13,7 @@ jobs: steps: - template: azure-pipelines/docker.yml parameters: - imageName: 'libgit2/trusty-openssl:latest' + imageName: 'libgit2/trusty-amd64:latest' environmentVariables: | CC=gcc CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL @@ -26,7 +26,7 @@ jobs: steps: - template: azure-pipelines/docker.yml parameters: - imageName: 'libgit2/trusty-mbedtls:latest' + imageName: 'libgit2/trusty-amd64:latest' environmentVariables: | CC=gcc CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS @@ -39,7 +39,7 @@ jobs: steps: - template: azure-pipelines/docker.yml parameters: - imageName: 'libgit2/trusty-openssl:latest' + imageName: 'libgit2/trusty-amd64:latest' environmentVariables: | CC=clang CMAKE_OPTIONS=-DUSE_HTTPS=OpenSSL @@ -52,7 +52,7 @@ jobs: steps: - template: azure-pipelines/docker.yml parameters: - imageName: 'libgit2/trusty-mbedtls:latest' + imageName: 'libgit2/trusty-amd64:latest' environmentVariables: | CC=clang CMAKE_OPTIONS=-DUSE_HTTPS=mbedTLS -DSHA1_BACKEND=mbedTLS |