2020-03-23 21:44:29 +08:00
|
|
|
#***************************************************************************
|
|
|
|
# _ _ ____ _
|
|
|
|
# Project ___| | | | _ \| |
|
|
|
|
# / __| | | | |_) | |
|
|
|
|
# | (__| |_| | _ <| |___
|
|
|
|
# \___|\___/|_| \_\_____|
|
|
|
|
#
|
2023-01-02 20:51:48 +08:00
|
|
|
# Copyright (C) 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.
|
|
|
|
#
|
|
|
|
# SPDX-License-Identifier: curl
|
2022-05-17 17:16:50 +08:00
|
|
|
#
|
2020-03-23 21:44:29 +08:00
|
|
|
###########################################################################
|
2023-10-30 02:15:11 +08:00
|
|
|
|
2023-03-11 08:58:21 +08:00
|
|
|
# https://ci.appveyor.com/project/curlorg/curl/history
|
2023-10-30 02:15:11 +08:00
|
|
|
# AppVeyor configuration:
|
|
|
|
# https://www.appveyor.com/docs/appveyor-yml/
|
|
|
|
# AppVeyor worker images:
|
|
|
|
# https://www.appveyor.com/docs/windows-images-software/
|
2020-03-23 21:44:29 +08:00
|
|
|
|
2016-06-22 20:42:10 +08:00
|
|
|
version: 7.50.0.{build}
|
2015-09-17 21:34:47 +08:00
|
|
|
|
|
|
|
environment:
|
2023-10-02 01:32:59 +08:00
|
|
|
UNITY: 'OFF'
|
|
|
|
OPENSSL: 'OFF'
|
|
|
|
DEBUG: 'ON'
|
|
|
|
SHARED: 'OFF'
|
2023-09-30 02:47:08 +08:00
|
|
|
matrix:
|
|
|
|
# generated CMake-based Visual Studio Release builds
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, VS2008, Release, x86, Schannel, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'Visual Studio 9 2008'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Release
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'ON'
|
|
|
|
ENABLE_UNICODE: 'OFF'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
SHARED: 'ON'
|
|
|
|
TESTING: 'OFF'
|
|
|
|
DISABLED_TESTS: ''
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, VS2022, Release, x64, OpenSSL 3, WebSockets, Unity, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'Visual Studio 17 2022'
|
|
|
|
TARGET: '-A x64'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Release
|
2023-10-02 01:32:59 +08:00
|
|
|
OPENSSL: 'ON'
|
|
|
|
SCHANNEL: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'OFF'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
SHARED: 'ON'
|
|
|
|
TESTING: 'OFF'
|
|
|
|
DISABLED_TESTS: ''
|
|
|
|
WEBSOCKETS: 'ON'
|
|
|
|
UNITY: 'ON'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, VS2022, Release, arm64, Schannel, Static, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'Visual Studio 17 2022'
|
|
|
|
TARGET: '-A ARM64'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Release
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'ON'
|
|
|
|
ENABLE_UNICODE: 'OFF'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
TESTING: 'OFF'
|
|
|
|
DISABLED_TESTS: ''
|
2023-09-30 02:47:08 +08:00
|
|
|
# generated CMake-based Visual Studio Debug builds
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, VS2010, Debug, x64, no SSL, Static'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'Visual Studio 10 2010 Win64'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Debug
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'OFF'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
TESTING: 'ON'
|
2024-01-17 18:32:44 +08:00
|
|
|
DISABLED_TESTS: '!1139 !1501 !1140 !1173 !1177 !1477'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, VS2022, Debug, x64, Schannel, Static, Unicode'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'Visual Studio 17 2022'
|
|
|
|
TARGET: '-A x64'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Debug
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'ON'
|
|
|
|
ENABLE_UNICODE: 'ON'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
TESTING: 'ON'
|
2024-01-17 18:32:44 +08:00
|
|
|
DISABLED_TESTS: '!1139 !1501 !1140 !1173 !1177 !1477'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, VS2022, Debug, x64, no SSL, Static'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'Visual Studio 17 2022'
|
|
|
|
TARGET: '-A x64'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Debug
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'OFF'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
TESTING: 'ON'
|
2024-01-17 18:32:44 +08:00
|
|
|
DISABLED_TESTS: '!1139 !1501 !1140 !1173 !1177 !1477'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, VS2022, Debug, x64, no SSL, Static, HTTP only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'Visual Studio 17 2022'
|
|
|
|
TARGET: '-A x64'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Debug
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'OFF'
|
|
|
|
HTTP_ONLY: 'ON'
|
|
|
|
TESTING: 'ON'
|
2024-01-17 18:32:44 +08:00
|
|
|
DISABLED_TESTS: '!1139 !1501 !1140 !1173 !1177 !1477'
|
2023-09-30 02:47:08 +08:00
|
|
|
# generated CMake-based MSYS Makefiles builds (mingw cross-compiling)
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, mingw-w64, gcc 13, Debug, x64, Schannel, Static, Unicode, Unity'
|
2023-10-07 18:29:39 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'MSYS Makefiles'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Debug
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'ON'
|
|
|
|
ENABLE_UNICODE: 'ON'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
TESTING: 'ON'
|
2024-01-17 18:32:44 +08:00
|
|
|
DISABLED_TESTS: '!1086 !1139 !1451 !1501 !1140 !1173 !1177 !1477'
|
2023-12-21 11:59:20 +08:00
|
|
|
ADD_PATH: 'C:/msys64/mingw64/bin'
|
2023-10-02 01:32:59 +08:00
|
|
|
MSYS2_ARG_CONV_EXCL: '/*'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_OPT: -k
|
2023-10-03 10:27:05 +08:00
|
|
|
UNITY: 'ON'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, mingw-w64, gcc 7, Debug, x64, Schannel, Static, Unicode'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'MSYS Makefiles'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Debug
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'ON'
|
|
|
|
ENABLE_UNICODE: 'ON'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
TESTING: 'ON'
|
2024-01-17 18:32:44 +08:00
|
|
|
DISABLED_TESTS: '!1086 !1139 !1451 !1501 !1140 !1173 !1177 !1477'
|
2023-12-21 11:59:20 +08:00
|
|
|
ADD_PATH: 'C:/mingw-w64/x86_64-7.2.0-posix-seh-rt_v5-rev1/mingw64/bin'
|
2023-10-02 01:32:59 +08:00
|
|
|
MSYS2_ARG_CONV_EXCL: '/*'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_OPT: -k
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, mingw-w64, gcc 9, Debug, x64, Schannel, Static, Unity'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'MSYS Makefiles'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Debug
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'ON'
|
|
|
|
ENABLE_UNICODE: 'OFF'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
TESTING: 'ON'
|
2023-10-13 10:33:19 +08:00
|
|
|
# test 286 disabled due to https://github.com/curl/curl/issues/12040
|
2024-01-17 18:32:44 +08:00
|
|
|
DISABLED_TESTS: '~286 !1086 !1139 !1451 !1501 !1140 !1173 !1177 !1477'
|
2023-12-21 11:59:20 +08:00
|
|
|
ADD_PATH: 'C:/msys64/mingw64/bin'
|
2023-10-02 01:32:59 +08:00
|
|
|
MSYS2_ARG_CONV_EXCL: '/*'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_OPT: -k
|
2023-10-02 01:32:59 +08:00
|
|
|
UNITY: 'ON'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'CMake, mingw-w64, gcc 6, Debug, x86, Schannel, Static'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: CMake
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_GEN: 'MSYS Makefiles'
|
2023-09-30 02:47:08 +08:00
|
|
|
PRJ_CFG: Debug
|
2023-10-02 01:32:59 +08:00
|
|
|
SCHANNEL: 'ON'
|
|
|
|
ENABLE_UNICODE: 'OFF'
|
|
|
|
HTTP_ONLY: 'OFF'
|
|
|
|
TESTING: 'ON'
|
2024-01-17 18:32:44 +08:00
|
|
|
DISABLED_TESTS: '!1086 !1139 !1451 !1501 !1140 !1173 !1177 !1477'
|
2023-12-21 11:59:20 +08:00
|
|
|
ADD_PATH: 'C:/mingw-w64/i686-6.3.0-posix-dwarf-rt_v5-rev1/mingw32/bin'
|
2023-10-02 01:32:59 +08:00
|
|
|
MSYS2_ARG_CONV_EXCL: '/*'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_OPT: -k
|
|
|
|
# winbuild-based builds
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'winbuild, VS2015, Debug, x64, OpenSSL 1.1.1, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: winbuild_vs2015
|
2023-10-02 01:32:59 +08:00
|
|
|
DEBUG: 'yes'
|
2023-09-30 02:47:08 +08:00
|
|
|
PATHPART: debug
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'no'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'winbuild, VS2015, Release, x64, OpenSSL 1.1.1, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: winbuild_vs2015
|
2023-10-02 01:32:59 +08:00
|
|
|
DEBUG: 'no'
|
2023-09-30 02:47:08 +08:00
|
|
|
PATHPART: release
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'no'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'winbuild, VS2017, Debug, x64, OpenSSL 1.1.1, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: winbuild_vs2017
|
2023-10-02 01:32:59 +08:00
|
|
|
DEBUG: 'yes'
|
2023-09-30 02:47:08 +08:00
|
|
|
PATHPART: debug
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'no'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'winbuild, VS2017, Release, x64, OpenSSL 1.1.1, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: winbuild_vs2017
|
2023-10-02 01:32:59 +08:00
|
|
|
DEBUG: 'no'
|
2023-09-30 02:47:08 +08:00
|
|
|
PATHPART: release
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'no'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'winbuild, VS2015, Debug, x64, OpenSSL 1.1.1, Unicode, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: winbuild_vs2015
|
2023-10-02 01:32:59 +08:00
|
|
|
DEBUG: 'yes'
|
2023-09-30 02:47:08 +08:00
|
|
|
PATHPART: debug
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'yes'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'winbuild, VS2015, Release, x64, OpenSSL 1.1.1, Unicode, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2015'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: winbuild_vs2015
|
2023-10-02 01:32:59 +08:00
|
|
|
DEBUG: 'no'
|
2023-09-30 02:47:08 +08:00
|
|
|
PATHPART: release
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'yes'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'winbuild, VS2017, Debug, x64, OpenSSL 1.1.1, Unicode, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: winbuild_vs2017
|
2023-10-02 01:32:59 +08:00
|
|
|
DEBUG: 'yes'
|
2023-09-30 02:47:08 +08:00
|
|
|
PATHPART: debug
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'yes'
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'winbuild, VS2017, Release, x64, OpenSSL 1.1.1, Unicode, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: winbuild_vs2017
|
2023-10-02 01:32:59 +08:00
|
|
|
DEBUG: 'no'
|
2023-09-30 02:47:08 +08:00
|
|
|
PATHPART: release
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'OFF'
|
|
|
|
ENABLE_UNICODE: 'yes'
|
2023-09-30 02:47:08 +08:00
|
|
|
# generated VisualStudioSolution-based builds
|
2023-10-30 02:15:11 +08:00
|
|
|
- job_name: 'VisualStudioSolution, VS2017, Debug, x86, Schannel, Build-only'
|
2023-10-02 01:32:59 +08:00
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: VisualStudioSolution
|
2023-10-02 01:32:59 +08:00
|
|
|
PRJ_CFG: 'DLL Debug - DLL Windows SSPI - DLL WinIDN'
|
|
|
|
TESTING: 'OFF'
|
2023-09-30 02:47:08 +08:00
|
|
|
VC_VERSION: VC14.10
|
|
|
|
# autotools-based builds (NOT mingw cross-compiling, but msys2 native)
|
2023-10-02 01:32:59 +08:00
|
|
|
- job_name: 'autotools, msys2, Debug, x86_64, no Proxy, no SSL'
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: autotools
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'ON'
|
|
|
|
DISABLED_TESTS: '!19 !1233'
|
2024-01-09 18:09:30 +08:00
|
|
|
CONFIG_ARGS: '--enable-debug --enable-werror --disable-threaded-resolver --disable-proxy --without-ssl --enable-websockets --without-libpsl'
|
2023-10-02 01:32:59 +08:00
|
|
|
- job_name: 'autotools, msys2, Debug, x86_64, no SSL'
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: autotools
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'ON'
|
|
|
|
DISABLED_TESTS: '!19 !504 !704 !705 !1233'
|
2024-01-09 18:09:30 +08:00
|
|
|
CONFIG_ARGS: '--enable-debug --enable-werror --disable-threaded-resolver --without-ssl --enable-websockets --without-libpsl'
|
2023-10-02 01:32:59 +08:00
|
|
|
- job_name: 'autotools, msys2, Release, x86_64, no SSL'
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2017'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: autotools
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'ON'
|
|
|
|
DISABLED_TESTS: '!19 !504 !704 !705 !1233'
|
2024-01-09 18:09:30 +08:00
|
|
|
CONFIG_ARGS: '--enable-warnings --enable-werror --without-ssl --enable-websockets --without-libpsl'
|
2023-09-30 02:47:08 +08:00
|
|
|
# autotools-based Cygwin build
|
2023-10-02 01:32:59 +08:00
|
|
|
- job_name: 'autotools, cygwin, Debug, x86_64, no SSL'
|
|
|
|
APPVEYOR_BUILD_WORKER_IMAGE: 'Visual Studio 2022'
|
2023-09-30 02:47:08 +08:00
|
|
|
BUILD_SYSTEM: autotools
|
2023-10-02 01:32:59 +08:00
|
|
|
TESTING: 'ON'
|
|
|
|
DISABLED_TESTS: ''
|
2023-12-21 11:59:20 +08:00
|
|
|
ADD_SHELL: 'C:/cygwin64/bin'
|
2024-01-09 18:09:30 +08:00
|
|
|
CONFIG_ARGS: '--enable-debug --enable-werror --disable-threaded-resolver --without-ssl --enable-websockets --without-libpsl'
|
2018-10-11 04:22:06 +08:00
|
|
|
|
|
|
|
install:
|
2023-10-02 01:32:59 +08:00
|
|
|
- ps: |
|
2023-12-21 11:59:20 +08:00
|
|
|
if($env:ADD_SHELL -ne $null) {
|
|
|
|
$env:PATH = "$env:ADD_SHELL;$env:PATH"
|
2023-10-30 02:15:11 +08:00
|
|
|
}
|
|
|
|
else {
|
2023-12-21 11:59:20 +08:00
|
|
|
$env:PATH = "C:/msys64/usr/bin;$env:PATH"
|
2023-10-02 01:32:59 +08:00
|
|
|
}
|
2023-12-21 11:59:20 +08:00
|
|
|
if($env:ADD_PATH -ne $null) {
|
|
|
|
$env:PATH = "$env:ADD_PATH;$env:PATH"
|
2023-10-02 01:32:59 +08:00
|
|
|
}
|
2023-09-30 02:47:08 +08:00
|
|
|
|
2023-12-21 11:59:20 +08:00
|
|
|
build_script:
|
|
|
|
- cmd: sh -c ./appveyor.sh
|
2023-10-02 01:32:59 +08:00
|
|
|
|
|
|
|
clone_depth: 10
|
2018-10-02 23:47:39 +08:00
|
|
|
|
2020-06-09 22:08:11 +08:00
|
|
|
# select branches to avoid testing feature branches twice (as branch and as pull request)
|
2017-06-21 05:00:49 +08:00
|
|
|
branches:
|
2023-09-30 02:47:08 +08:00
|
|
|
only:
|
|
|
|
- master
|
|
|
|
- /\/ci$/
|
2019-10-20 02:37:06 +08:00
|
|
|
|
2023-04-25 07:34:26 +08:00
|
|
|
skip_commits:
|
|
|
|
files:
|
|
|
|
- '.azure-pipelines.yml'
|
2023-04-29 01:28:06 +08:00
|
|
|
- '.circleci/**/*'
|
2023-04-25 07:34:26 +08:00
|
|
|
- '.cirrus.yml'
|
2023-04-29 01:28:06 +08:00
|
|
|
- '.github/**/*'
|
|
|
|
- 'packages/**/*'
|
|
|
|
- 'plan9/**/*'
|
2023-04-25 07:34:26 +08:00
|
|
|
|
2019-10-20 02:37:06 +08:00
|
|
|
artifacts:
|
|
|
|
- path: '**/curl.exe'
|
|
|
|
name: curl
|
2020-07-13 04:04:00 +08:00
|
|
|
- path: '**/*curl*.dll'
|
2023-05-09 18:10:40 +08:00
|
|
|
name: libcurl dll
|