diff options
author | Marc Hoersken <info@marc-hoersken.de> | 2021-03-01 21:37:25 +0100 |
---|---|---|
committer | Marc Hoersken <info@marc-hoersken.de> | 2021-03-01 21:37:25 +0100 |
commit | cc9bf974cd8dc53fbb24d6f7a6dc558c71bff5bd (patch) | |
tree | e2cb6116f75119d8418c42dc8af53d3e41c572fb /.azure-pipelines.yml | |
parent | 311c31ec8e721b11ba77adf7a3865cf0cd30aa42 (diff) | |
download | curl-cc9bf974cd8dc53fbb24d6f7a6dc558c71bff5bd.tar.gz |
CI/azure: replace python-impacket with python3-impacket
As of this month Azure DevOps uses Ubuntu 20.04 LTS which
no longer supports Python 2 and instead ships Python 3.
Closes #6678
Diffstat (limited to '.azure-pipelines.yml')
-rw-r--r-- | .azure-pipelines.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 724d0e532..75deb0ac5 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -76,7 +76,7 @@ stages: configure: --enable-debug --disable-shared --disable-threaded-resolver tests: -n -t --shallow=40 !FTP steps: - - script: sudo apt-get update && sudo apt-get install -y stunnel4 python-impacket libzstd-dev libbrotli-dev $(install) + - script: sudo apt-get update && sudo apt-get install -y stunnel4 python3-impacket libzstd-dev libbrotli-dev $(install) displayName: 'apt install' - script: ./buildconf && ./configure --enable-warnings --enable-werror $(configure) |