2020-03-23 21:44:29 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2022-01-27 05:57:54 +08:00
|
|
|
# Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# This software is licensed as described in the file COPYING, which
|
|
|
|
# you should have received as part of this distribution. The terms
|
2020-11-04 21:02:01 +08:00
|
|
|
# are also available at https://curl.se/docs/copyright.html.
|
2020-03-23 21:44:29 +08:00
|
|
|
#
|
|
|
|
# You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
# copies of the Software, and permit persons to whom the Software is
|
|
|
|
# furnished to do so, under the terms of the COPYING file.
|
|
|
|
#
|
|
|
|
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
# KIND, either express or implied.
|
|
|
|
#
|
2021-04-15 15:21:40 +08:00
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2020-03-23 21:44:29 +08:00
|
|
|
###########################################################################
|
2019-12-02 22:37:09 +08:00
|
|
|
# Starter pipeline
|
|
|
|
# Start with a minimal pipeline that you can customize to build and deploy your code.
|
|
|
|
# Add steps that build, run tests, deploy, and more:
|
|
|
|
# https://aka.ms/yaml
|
|
|
|
|
|
|
|
trigger:
|
2020-03-16 06:57:04 +08:00
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- 'master'
|
|
|
|
- '*/ci'
|
|
|
|
|
|
|
|
pr:
|
|
|
|
branches:
|
|
|
|
include:
|
|
|
|
- 'master'
|
2020-02-22 21:20:57 +08:00
|
|
|
|
|
|
|
stages:
|
2019-12-02 22:37:09 +08:00
|
|
|
|
2019-12-10 19:47:30 +08:00
|
|
|
##########################################
|
|
|
|
### Linux jobs first
|
|
|
|
##########################################
|
|
|
|
|
2020-02-22 21:20:57 +08:00
|
|
|
- stage: linux
|
|
|
|
dependsOn: []
|
|
|
|
jobs:
|
2020-05-29 04:11:32 +08:00
|
|
|
- job: ubuntu
|
|
|
|
# define defaults to make sure variables are always expanded/replaced
|
|
|
|
variables:
|
|
|
|
install: ''
|
|
|
|
configure: ''
|
2021-03-22 23:07:36 +08:00
|
|
|
tests: '!433'
|
2020-05-29 04:11:32 +08:00
|
|
|
timeoutInMinutes: 60
|
2019-12-09 17:08:46 +08:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
2020-05-29 04:11:32 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
|
|
|
default:
|
|
|
|
name: default
|
2022-09-21 18:32:16 +08:00
|
|
|
install:
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --enable-debug --with-openssl
|
2020-05-29 04:11:32 +08:00
|
|
|
disable_ipv6:
|
|
|
|
name: w/o IPv6
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --disable-ipv6 --with-openssl
|
2020-05-29 04:11:32 +08:00
|
|
|
disable_http_smtp_imap:
|
|
|
|
name: w/o HTTP/SMTP/IMAP
|
2021-11-13 18:50:59 +08:00
|
|
|
configure: --disable-http --disable-smtp --disable-imap --without-ssl
|
2020-05-29 04:11:32 +08:00
|
|
|
disable_thredres:
|
|
|
|
name: sync resolver
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --disable-threaded-resolver --with-openssl
|
|
|
|
https_only:
|
|
|
|
name: HTTPS only
|
|
|
|
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 --with-openssl
|
2020-05-29 04:11:32 +08:00
|
|
|
torture:
|
|
|
|
name: torture
|
|
|
|
install: libnghttp2-dev
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --enable-debug --disable-shared --disable-threaded-resolver --with-openssl
|
2022-08-26 05:52:34 +08:00
|
|
|
tests: -n -t --shallow=25 !FTP
|
2020-05-29 04:11:32 +08:00
|
|
|
steps:
|
2021-03-02 04:37:25 +08:00
|
|
|
- script: sudo apt-get update && sudo apt-get install -y stunnel4 python3-impacket libzstd-dev libbrotli-dev $(install)
|
2020-03-15 06:49:03 +08:00
|
|
|
displayName: 'apt install'
|
2022-06-15 03:33:35 +08:00
|
|
|
retryCountOnTaskFailure: 3
|
2020-03-15 06:49:03 +08:00
|
|
|
|
2022-03-15 17:25:25 +08:00
|
|
|
- script: autoreconf -fi && ./configure --enable-warnings --enable-werror $(configure)
|
2020-05-29 04:11:32 +08:00
|
|
|
displayName: 'configure $(name)'
|
2019-12-04 06:21:09 +08:00
|
|
|
|
2021-12-14 14:53:39 +08:00
|
|
|
- script: make V=1 && make V=1 examples && cd tests && make V=1
|
2021-05-16 02:55:42 +08:00
|
|
|
displayName: 'compile'
|
2021-07-26 02:05:43 +08:00
|
|
|
env:
|
|
|
|
MAKEFLAGS: "-j 2"
|
2019-12-04 06:21:09 +08:00
|
|
|
|
2021-10-09 02:43:19 +08:00
|
|
|
- script: make V=1 test-ci
|
2019-12-04 06:21:09 +08:00
|
|
|
displayName: 'test'
|
2020-02-23 03:09:29 +08:00
|
|
|
env:
|
|
|
|
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
|
2022-08-25 03:46:25 +08:00
|
|
|
TFLAGS: "-ac /usr/bin/curl -r $(tests)"
|
2019-12-10 19:47:46 +08:00
|
|
|
|
2022-01-27 05:57:54 +08:00
|
|
|
- stage: distcheck
|
|
|
|
dependsOn: []
|
|
|
|
jobs:
|
|
|
|
- job: ubuntu
|
2022-05-24 18:19:05 +08:00
|
|
|
timeoutInMinutes: 30
|
2022-01-27 05:57:54 +08:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
2022-03-15 17:25:25 +08:00
|
|
|
- script: autoreconf -fi && ./configure --without-ssl
|
2022-01-27 05:57:54 +08:00
|
|
|
displayName: 'configure $(name)'
|
|
|
|
|
|
|
|
- script: make && ./maketgz 99.98.97
|
|
|
|
displayName: 'make tarball'
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
tar xf curl-99.98.97.tar.gz
|
|
|
|
cd curl-99.98.97
|
|
|
|
./configure --prefix=$HOME/temp --without-ssl
|
|
|
|
make
|
|
|
|
make TFLAGS=1 test
|
|
|
|
make install
|
|
|
|
# basic check of the installed files
|
|
|
|
cd ..
|
|
|
|
bash scripts/installcheck.sh $HOME/temp
|
|
|
|
rm -rf curl-99.98.97
|
|
|
|
|
|
|
|
displayName: 'verify in-tree configure build'
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
# verify out-of-tree build
|
|
|
|
tar xf curl-99.98.97.tar.gz
|
|
|
|
touch curl-99.98.97/docs/{cmdline-opts,libcurl}/Makefile.inc
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
../curl-99.98.97/configure --without-ssl
|
|
|
|
make
|
|
|
|
make TFLAGS='-p 1 1139' test
|
|
|
|
# verify cmake build
|
|
|
|
cd ..
|
|
|
|
rm -rf curl-99.98.97
|
|
|
|
|
|
|
|
displayName: 'verify out-of-tree configure build'
|
|
|
|
|
|
|
|
- script: |
|
|
|
|
tar xf curl-99.98.97.tar.gz
|
|
|
|
cd curl-99.98.97
|
|
|
|
mkdir build
|
|
|
|
cd build
|
|
|
|
cmake ..
|
|
|
|
make
|
|
|
|
|
|
|
|
displayName: 'verify out-of-tree cmake build'
|
|
|
|
|
2022-01-27 21:38:27 +08:00
|
|
|
- stage: scanbuild
|
|
|
|
dependsOn: []
|
|
|
|
jobs:
|
|
|
|
- job: ubuntu
|
2022-05-24 18:19:05 +08:00
|
|
|
timeoutInMinutes: 30
|
2022-01-27 21:38:27 +08:00
|
|
|
pool:
|
|
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
|
|
- script: sudo apt-get update && sudo apt-get install -y clang-tools-10 clang-9 libssl-dev libssh2-1-dev libpsl-dev libbrotli-dev libzstd-dev
|
|
|
|
displayName: 'apt install'
|
2022-06-15 03:33:35 +08:00
|
|
|
retryCountOnTaskFailure: 3
|
2022-01-27 21:38:27 +08:00
|
|
|
|
2022-03-15 17:25:25 +08:00
|
|
|
- script: autoreconf -fi
|
|
|
|
displayName: 'autoreconf'
|
2022-01-27 21:38:27 +08:00
|
|
|
|
|
|
|
- script: scan-build-10 ./configure --enable-debug --enable-werror --with-openssl --with-libssh2
|
|
|
|
displayName: 'configure'
|
|
|
|
env:
|
|
|
|
CC: "clang-9"
|
|
|
|
CCX: "clang++-9"
|
|
|
|
|
|
|
|
- script: scan-build-10 --status-bugs make
|
|
|
|
displayName: 'make'
|
|
|
|
|
|
|
|
- script: scan-build-10 --status-bugs make examples
|
|
|
|
displayName: 'make examples'
|
2022-01-27 05:57:54 +08:00
|
|
|
|
2020-02-22 21:20:57 +08:00
|
|
|
##########################################
|
|
|
|
### Windows jobs below
|
|
|
|
##########################################
|
|
|
|
|
|
|
|
- stage: windows
|
|
|
|
dependsOn: []
|
2020-03-21 01:18:04 +08:00
|
|
|
variables:
|
|
|
|
agent.preferPowerShellOnContainers: true
|
2020-02-22 21:20:57 +08:00
|
|
|
jobs:
|
2022-05-24 18:19:05 +08:00
|
|
|
- job: msys
|
2020-05-29 04:11:32 +08:00
|
|
|
# define defaults to make sure variables are always expanded/replaced
|
|
|
|
variables:
|
|
|
|
container_img: ''
|
|
|
|
container_cmd: ''
|
|
|
|
configure: ''
|
2020-08-05 21:07:30 +08:00
|
|
|
tests: ''
|
2020-07-28 16:00:38 +08:00
|
|
|
timeoutInMinutes: 120
|
2020-02-22 21:20:57 +08:00
|
|
|
pool:
|
|
|
|
vmImage: 'windows-2019'
|
2020-05-29 04:11:32 +08:00
|
|
|
strategy:
|
|
|
|
matrix:
|
2022-05-24 18:19:05 +08:00
|
|
|
v2_mingw32_openssl:
|
2021-05-16 02:55:42 +08:00
|
|
|
name: 32-bit OpenSSL/libssh2
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw32:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\msys64\usr\bin\sh
|
2021-12-14 03:51:19 +08:00
|
|
|
prepare: pacman -S --needed --noconfirm --noprogressbar libssh2-devel mingw-w64-i686-libssh2 mingw-w64-i686-python-pip mingw-w64-i686-python-wheel mingw-w64-i686-python-pyopenssl && python3 -m pip install --prefer-binary impacket
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-debug --enable-werror --with-libssh2 --with-openssl
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "~571"
|
2022-05-24 18:19:05 +08:00
|
|
|
v2_mingw64_openssl:
|
2021-05-16 02:55:42 +08:00
|
|
|
name: 64-bit OpenSSL/libssh2
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw64:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\msys64\usr\bin\sh
|
2021-12-14 03:51:19 +08:00
|
|
|
prepare: pacman -S --needed --noconfirm --noprogressbar libssh2-devel mingw-w64-x86_64-libssh2 mingw-w64-x86_64-python-pip mingw-w64-x86_64-python-wheel mingw-w64-x86_64-python-pyopenssl && python3 -m pip install --prefer-binary impacket
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-debug --enable-werror --with-libssh2 --with-openssl
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "~571"
|
2022-05-24 18:19:05 +08:00
|
|
|
v2_mingw64_libssh:
|
2022-02-25 20:56:28 +08:00
|
|
|
name: 64-bit OpenSSL/libssh
|
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw64:ltsc2019
|
|
|
|
container_cmd: C:\msys64\usr\bin\sh
|
|
|
|
prepare: pacman -S --needed --noconfirm --noprogressbar libssh-devel mingw-w64-x86_64-libssh
|
|
|
|
configure: --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-debug --enable-werror --with-libssh --with-openssl
|
|
|
|
tests: "~571 ~614"
|
2022-05-24 18:19:05 +08:00
|
|
|
v1_mingw:
|
2021-04-15 15:21:40 +08:00
|
|
|
name: 32-bit (legacy)
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys1-mingw:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\MinGW\msys\1.0\bin\sh
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=i686-pc-mingw32 --build=i686-pc-mingw32 --prefix=/mingw --enable-debug --without-ssl
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "!203 !1143"
|
2022-05-24 18:19:05 +08:00
|
|
|
v1_mingw32:
|
2021-04-15 15:21:40 +08:00
|
|
|
name: 32-bit w/o zlib
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys1-mingw32:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\MinGW\msys\1.0\bin\sh
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-debug --enable-werror --without-zlib --without-ssl
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "!203 !1143"
|
2022-05-24 18:19:05 +08:00
|
|
|
v1_mingw64:
|
2021-04-15 15:21:40 +08:00
|
|
|
name: 64-bit w/o zlib
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys1-mingw64:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\MinGW\msys\1.0\bin\sh
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-debug --enable-werror --without-zlib --without-ssl
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "!203 !1143"
|
2022-05-24 18:19:05 +08:00
|
|
|
v2_mingw32_schannel:
|
2021-05-16 02:55:42 +08:00
|
|
|
name: 32-bit Schannel/SSPI/WinIDN/libssh2
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw32:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\msys64\usr\bin\sh
|
2021-12-14 03:51:19 +08:00
|
|
|
prepare: pacman -S --needed --noconfirm --noprogressbar libssh2-devel mingw-w64-i686-libssh2 mingw-w64-i686-python-pip mingw-w64-i686-python-wheel mingw-w64-i686-python-pyopenssl && python3 -m pip install --prefer-binary impacket
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-debug --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "~571"
|
2022-05-24 18:19:05 +08:00
|
|
|
v2_mingw64_schannel:
|
2021-05-16 02:55:42 +08:00
|
|
|
name: 64-bit Schannel/SSPI/WinIDN/libssh2
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys2-mingw64:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\msys64\usr\bin\sh
|
2021-12-14 03:51:19 +08:00
|
|
|
prepare: pacman -S --needed --noconfirm --noprogressbar libssh2-devel mingw-w64-x86_64-libssh2 mingw-w64-x86_64-python-pip mingw-w64-x86_64-python-wheel mingw-w64-x86_64-python-pyopenssl && python3 -m pip install --prefer-binary impacket
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-debug --enable-werror --enable-sspi --with-schannel --with-winidn --with-libssh2
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "~571"
|
2022-05-24 18:19:05 +08:00
|
|
|
v1_mingw_schannel:
|
2020-05-29 04:11:32 +08:00
|
|
|
name: 32-bit Schannel/SSPI/WinIDN (legacy)
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys1-mingw:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\MinGW\msys\1.0\bin\sh
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=i686-pc-mingw32 --build=i686-pc-mingw32 --prefix=/mingw --enable-debug --enable-sspi --with-schannel --with-winidn
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "!203 !305 !311 !312 !313 !404 !1143 !2033 !2035 !2038 !2041 !2042 !2048 !2070 !2079 !2087 !3023 !3024"
|
2022-05-24 18:19:05 +08:00
|
|
|
v1_mingw32_schannel:
|
2020-05-29 04:11:32 +08:00
|
|
|
name: 32-bit Schannel/SSPI/WinIDN w/o zlib
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys1-mingw32:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\MinGW\msys\1.0\bin\sh
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=i686-w64-mingw32 --build=i686-w64-mingw32 --prefix=/mingw32 --enable-debug --enable-werror --enable-sspi --with-schannel --with-winidn --without-zlib
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "!203 !1143"
|
2022-05-24 18:19:05 +08:00
|
|
|
v1_mingw64_schannel:
|
2020-05-29 04:11:32 +08:00
|
|
|
name: 64-bit Schannel/SSPI/WinIDN w/o zlib
|
2021-08-18 03:39:17 +08:00
|
|
|
container_img: ghcr.io/mback2k/curl-docker-winbuildenv/msys1-mingw64:ltsc2019
|
2020-05-29 04:11:32 +08:00
|
|
|
container_cmd: C:\MinGW\msys\1.0\bin\sh
|
2021-04-15 15:21:40 +08:00
|
|
|
configure: --host=x86_64-w64-mingw32 --build=x86_64-w64-mingw32 --prefix=/mingw64 --enable-debug --enable-werror --enable-sspi --with-schannel --with-winidn --without-zlib
|
2021-11-06 23:14:17 +08:00
|
|
|
tests: "!203 !1143"
|
2020-02-22 21:20:57 +08:00
|
|
|
container:
|
2020-05-29 04:11:32 +08:00
|
|
|
image: $(container_img)
|
2020-02-23 03:09:29 +08:00
|
|
|
env:
|
2020-02-22 21:20:57 +08:00
|
|
|
MSYS2_PATH_TYPE: inherit
|
|
|
|
steps:
|
2020-07-25 04:59:17 +08:00
|
|
|
- script: $(container_cmd) -l -c "cd $(echo '%cd%') && $(prepare)"
|
|
|
|
displayName: 'prepare'
|
|
|
|
condition: variables.prepare
|
2022-06-15 03:33:35 +08:00
|
|
|
retryCountOnTaskFailure: 3
|
2020-07-25 04:59:17 +08:00
|
|
|
|
2022-03-15 17:25:25 +08:00
|
|
|
- script: $(container_cmd) -l -c "cd $(echo '%cd%') && autoreconf -fi && ./configure $(configure)"
|
2020-05-29 04:11:32 +08:00
|
|
|
displayName: 'configure $(name)'
|
2020-02-22 21:20:57 +08:00
|
|
|
|
2021-12-14 14:53:39 +08:00
|
|
|
- script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 && make V=1 examples && cd tests && make V=1"
|
2021-05-16 02:55:42 +08:00
|
|
|
displayName: 'compile'
|
2021-07-26 02:05:43 +08:00
|
|
|
env:
|
|
|
|
MAKEFLAGS: "-j 2"
|
2020-02-22 21:20:57 +08:00
|
|
|
|
2021-05-16 02:55:42 +08:00
|
|
|
- script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 install && PATH=/usr/bin:/bin find . -type f -path '*/.libs/*.exe' -print -execdir mv -t .. {} \;"
|
2020-10-12 12:23:25 +08:00
|
|
|
displayName: 'install'
|
|
|
|
|
2021-09-28 03:17:29 +08:00
|
|
|
- script: $(container_cmd) -l -c "cd $(echo '%cd%') && make V=1 test-ci"
|
2020-02-22 21:20:57 +08:00
|
|
|
displayName: 'test'
|
2020-02-23 03:09:29 +08:00
|
|
|
env:
|
|
|
|
AZURE_ACCESS_TOKEN: "$(System.AccessToken)"
|
2022-08-25 03:46:25 +08:00
|
|
|
TFLAGS: "-ac /usr/bin/curl.exe !IDN !SCP ~612 ~1056 $(tests)"
|