diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2020-03-14 23:49:03 +0100 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2020-03-15 10:02:11 +0100 |
commit | ac566834382340d9de2737aa41c82fea7814590b (patch) | |
tree | 880b4d37355b0e0eda104d19e336eb951d5bbd3d /.azure-pipelines.yml | |
parent | 4be2560e01ed40e256b5143c8b4f5de2450ffefd (diff) | |
download | curl-ac566834382340d9de2737aa41c82fea7814590b.tar.gz |
ci/tests: install test suite dependencies stunnel and impacket
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 9e2d74e99..7345b92c2 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -22,6 +22,9 @@ stages: pool: vmImage: 'ubuntu-latest' steps: + - script: sudo apt install stunnel4 python-impacket + displayName: 'apt install' + - script: ./buildconf && ./configure --enable-debug --enable-werror displayName: 'configure debug' @@ -39,6 +42,9 @@ stages: pool: vmImage: 'ubuntu-latest' steps: + - script: sudo apt install stunnel4 python-impacket + displayName: 'apt install' + - script: ./buildconf && ./configure --disable-ipv6 displayName: 'configure disable ipv6' @@ -56,6 +62,9 @@ stages: pool: vmImage: 'ubuntu-latest' steps: + - script: sudo apt install stunnel4 python-impacket + displayName: 'apt install' + - script: ./buildconf && ./configure --disable-http --disable-smtp --disable-imap displayName: 'configure disable http/smtp/imap' @@ -73,6 +82,9 @@ stages: pool: vmImage: 'ubuntu-latest' steps: + - script: sudo apt install stunnel4 python-impacket + displayName: 'apt install' + - script: ./buildconf && ./configure --disable-threaded-resolver displayName: 'configure disable threaded-resolver' @@ -90,6 +102,9 @@ stages: pool: vmImage: 'ubuntu-latest' steps: + - script: sudo apt install stunnel4 python-impacket + displayName: 'apt install' + - script: ./buildconf && ./configure --disable-dict --disable-file --disable-ftp --disable-gopher --disable-imap --disable-ldap --disable-pop3 --disable-rtmp --disable-rtsp --disable-scp --disable-sftp --disable-smb --disable-smtp --disable-telnet --disable-tftp displayName: 'configure disable non-http' @@ -110,7 +125,7 @@ stages: pool: vmImage: 'ubuntu-latest' steps: - - script: sudo apt install libnghttp2-dev + - script: sudo apt install stunnel4 python-impacket libnghttp2-dev displayName: 'apt install' - script: ./buildconf && ./configure --enable-debug --disable-shared --disable-threaded-resolver --enable-alt-svc |