summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2019-12-03 23:21:09 +0100
committerDaniel Stenberg <daniel@haxx.se>2019-12-03 23:21:09 +0100
commitc9a0dd3b5ae5d259fd52e8c016f7888a1fc8d6b3 (patch)
tree77d3d367637a2f0662c68ec736c853251776fb3d
parent854343fc4e101f653ffb181581ac17437a80a5df (diff)
downloadcurl-c9a0dd3b5ae5d259fd52e8c016f7888a1fc8d6b3.tar.gz
azure: add a ipv6-disabled build
-rw-r--r--.azure-pipelines.yml29
1 files changed, 22 insertions, 7 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml
index 5e3162cc8..6feb48fbc 100644
--- a/.azure-pipelines.yml
+++ b/.azure-pipelines.yml
@@ -9,12 +9,27 @@ trigger:
pool:
vmImage: 'ubuntu-latest'
-steps:
-- script: ./buildconf && ./configure
- displayName: 'Run configure'
+jobs:
+ - job: vanilla_ubuntu
+ displayName: stock Ubuntu with plain configure
+ steps:
+ - script: ./buildconf && ./configure
+ displayName: 'Run configure'
-- script: make
- displayName: 'make'
+ - script: make
+ displayName: 'make'
-- script: make test-nonflaky
- displayName: 'test'
+ - script: make test-nonflaky
+ displayName: 'test'
+
+ - job: disable_ipv6
+ displayName: without IPv6
+ steps:
+ - script: ./buildconf && ./configure --disable-ipv6
+ displayName: 'Run configure --disable-ipv6'
+
+ - script: make
+ displayName: 'make'
+
+ - script: make test-nonflaky
+ displayName: 'test'