James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 1 | # |
Roger Meier | df71a2e | 2015-04-09 01:06:49 +0200 | [diff] [blame] | 2 | # Licensed to the Apache Software Foundation (ASF) under one |
| 3 | # or more contributor license agreements. See the NOTICE file |
| 4 | # distributed with this work for additional information |
| 5 | # regarding copyright ownership. The ASF licenses this file |
| 6 | # to you under the Apache License, Version 2.0 (the |
| 7 | # "License"); you may not use this file except in compliance |
| 8 | # with the License. You may obtain a copy of the License at |
| 9 | # |
| 10 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 11 | # |
| 12 | # Unless required by applicable law or agreed to in writing, |
| 13 | # software distributed under the License is distributed on an |
| 14 | # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY |
| 15 | # KIND, either express or implied. See the License for the |
| 16 | # specific language governing permissions and limitations |
| 17 | # under the License. |
| 18 | # |
| 19 | |
| 20 | # build Apache Thrift on AppVeyor - https://ci.appveyor.com |
| 21 | |
Jens Geyer | ef199cc | 2024-09-03 01:28:31 +0200 | [diff] [blame] | 22 | version: '0.22.0.{build}' |
Nobuaki Sukegawa | e8c71d8 | 2015-11-23 19:51:37 +0900 | [diff] [blame] | 23 | |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 24 | shallow_clone: true |
| 25 | |
James E. King III | 278528c | 2019-01-11 12:17:44 -0500 | [diff] [blame] | 26 | branches: |
| 27 | only: |
| 28 | - master |
| 29 | - /^(release/)?\d+\.\d+\.\d+$/ |
| 30 | |
Mario Emmenlauer | 6dfaf9c | 2021-08-11 19:30:25 +0200 | [diff] [blame] | 31 | # Note: We could abort all jobs on the first error, but then it |
| 32 | # becomes hard to learn from the other jobs results. Therefore disabled: |
| 33 | #matrix: |
| 34 | # fast_finish: true |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 35 | |
Roger Meier | df71a2e | 2015-04-09 01:06:49 +0200 | [diff] [blame] | 36 | environment: |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 37 | matrix: |
James E. King III | 860a5f1 | 2018-03-06 14:23:23 -0500 | [diff] [blame] | 38 | - PROFILE: MSVC2017 |
Mario Emmenlauer | 22bb550 | 2021-08-05 15:40:19 +0200 | [diff] [blame] | 39 | PROFILE_CLASS: MSVC |
Mario Emmenlauer | ce64880 | 2021-08-05 17:10:09 +0200 | [diff] [blame] | 40 | APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017 |
James E. King, III | 33df4eb | 2017-04-06 08:45:17 -0400 | [diff] [blame] | 41 | PLATFORM: x64 |
| 42 | CONFIGURATION: Release |
cyy | 8fdb758 | 2019-02-05 02:57:21 +0800 | [diff] [blame] | 43 | BUILD_SHARED_LIBS: ON |
James E. King III | c9ac8d2 | 2019-01-07 16:46:45 -0500 | [diff] [blame] | 44 | BOOST_VERSION: 1.67.0 |
James E. King III | 860a5f1 | 2018-03-06 14:23:23 -0500 | [diff] [blame] | 45 | LIBEVENT_VERSION: 2.1.8 |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 46 | PYTHON_VERSION: 3.6 |
James E. King III | 860a5f1 | 2018-03-06 14:23:23 -0500 | [diff] [blame] | 47 | QT_VERSION: 5.10 |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 48 | ZLIB_VERSION: 1.2.11 |
| 49 | |
James E. King III | c9ac8d2 | 2019-01-07 16:46:45 -0500 | [diff] [blame] | 50 | - PROFILE: MSVC2015 |
Mario Emmenlauer | 22bb550 | 2021-08-05 15:40:19 +0200 | [diff] [blame] | 51 | PROFILE_CLASS: MSVC |
Mario Emmenlauer | ce64880 | 2021-08-05 17:10:09 +0200 | [diff] [blame] | 52 | APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015 |
James E. King III | 8d55c47 | 2018-03-12 14:29:55 -0400 | [diff] [blame] | 53 | PLATFORM: x86 |
James E. King III | f3ec277 | 2019-01-12 11:52:04 -0500 | [diff] [blame] | 54 | CONFIGURATION: Debug |
James E. King III | 278528c | 2019-01-11 12:17:44 -0500 | [diff] [blame] | 55 | BUILD_SHARED_LIBS: OFF |
James E. King III | c9ac8d2 | 2019-01-07 16:46:45 -0500 | [diff] [blame] | 56 | BOOST_VERSION: 1.62.0 |
James E. King III | 8d55c47 | 2018-03-12 14:29:55 -0400 | [diff] [blame] | 57 | LIBEVENT_VERSION: 2.0.22 |
| 58 | PYTHON_VERSION: 3.5 |
| 59 | QT_VERSION: 5.8 |
| 60 | ZLIB_VERSION: 1.2.8 |
James E. King III | 8d55c47 | 2018-03-12 14:29:55 -0400 | [diff] [blame] | 61 | |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 62 | - PROFILE: MINGW |
Mario Emmenlauer | 22bb550 | 2021-08-05 15:40:19 +0200 | [diff] [blame] | 63 | PROFILE_CLASS: MINGW |
Mario Emmenlauer | 166786e | 2021-08-04 10:38:56 +0200 | [diff] [blame] | 64 | # Currently the the latest MSYS2 is in the following image: |
| 65 | APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019 |
James E. King, III | 33df4eb | 2017-04-06 08:45:17 -0400 | [diff] [blame] | 66 | PLATFORM: x64 |
James E. King III | 860a5f1 | 2018-03-06 14:23:23 -0500 | [diff] [blame] | 67 | CONFIGURATION: RelWithDebInfo |
Mario Emmenlauer | 8027936 | 2020-04-24 08:51:37 +0200 | [diff] [blame] | 68 | DISABLED_TESTS: (StalenessCheckTest) |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 69 | |
Mario Emmenlauer | fcb07b1 | 2021-08-11 19:29:38 +0200 | [diff] [blame] | 70 | # As of 2021.08.06, the Cygwin build is broken with a missing dll exception. |
| 71 | # See for an example https://ci.appveyor.com/project/ApacheSoftwareFoundation/thrift/builds/40263513/job/a69xt6m4o0y9x1bw?fullLog=true |
| 72 | # - PROFILE: CYGWIN |
| 73 | # PROFILE_CLASS: CYGWIN |
| 74 | # PLATFORM: x64 |
| 75 | # CONFIGURATION: RelWithDebInfo |
| 76 | # DISABLED_TESTS: (ZlibTest|OpenSSLManualInitTest|TNonblockingServerTest) |
Roger Meier | df71a2e | 2015-04-09 01:06:49 +0200 | [diff] [blame] | 77 | |
Roger Meier | df71a2e | 2015-04-09 01:06:49 +0200 | [diff] [blame] | 78 | |
| 79 | build_script: |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 80 | - cd %APPVEYOR_BUILD_FOLDER% |
Mario Emmenlauer | ffc7bb9 | 2021-08-05 17:23:35 +0200 | [diff] [blame] | 81 | - call build\appveyor\%PROFILE_CLASS%-appveyor-full.bat |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 82 | |
James E. King, III | 33df4eb | 2017-04-06 08:45:17 -0400 | [diff] [blame] | 83 | |
James E. King, III | 07f5997 | 2017-03-10 06:18:33 -0500 | [diff] [blame] | 84 | # artifact capture disabled as it might increase service cost for little gain: |
| 85 | # |
| 86 | # artifacts: |
| 87 | # - path: local-thrift-inst |
| 88 | # name: cmake installed content |
| 89 | # type: zip |
| 90 | # |
| 91 | # - path: local-thrift-build\Testing |
| 92 | # name: ctest output |
| 93 | # type: zip |
James E. King, III | 33df4eb | 2017-04-06 08:45:17 -0400 | [diff] [blame] | 94 | |
| 95 | # RDP support: use one or the other... |
| 96 | # |
| 97 | # enables RDP for each build job so you can inspect the environment at the beginning of the job: |
| 98 | # init: |
| 99 | # - ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) |
| 100 | # |
| 101 | # enables RDP at the end of the build job so you can login and re-run |
| 102 | # commands to see why something failed... |
James E. King III | c9ac8d2 | 2019-01-07 16:46:45 -0500 | [diff] [blame] | 103 | # on_finish: |
| 104 | # - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1')) |
James E. King, III | 82ae957 | 2017-08-05 12:23:54 -0400 | [diff] [blame] | 105 | # |
| 106 | # also need: |
| 107 | # environment: |
jfarrell | 384647d | 2018-10-16 22:36:46 -0400 | [diff] [blame] | 108 | # APPVEYOR_RDP_PASSWORD: thr1FT2345$xyzZ |