File: appveyor.yml

package info (click to toggle)
boost1.88 1.88.0-1
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 576,932 kB
  • sloc: cpp: 4,149,234; xml: 136,789; ansic: 35,092; python: 33,910; asm: 5,698; sh: 4,604; ada: 1,681; makefile: 1,633; pascal: 1,139; perl: 1,124; sql: 640; yacc: 478; ruby: 271; java: 77; lisp: 24; csh: 6
file content (98 lines) | stat: -rw-r--r-- 3,285 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# Use, modification, and distribution are
# subject to the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#
# Copyright Rene Ferdinand Rivera Morell 2015-2023.

branches:
  only:
    - /main/
    - /release/
    - /feature\/.*/
    - /backport-.*/
    - /version\/.*/

skip_commits:
  files:
    - ".circleci/*"
    - ".cirrus.yml"
    - ".drone.star"
    - ".github/workflows/*"
    - ".semaphore/*"
    - "azure-pipelines.yml"

environment:
  matrix:
  - job_name: 'Visual Studio 2022, Test'
    job_group: 'Test'
    TOOLSET: vc143
    TEST_TOOLSET: msvc-14.3
    APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
  - job_name: 'Visual Studio 2019, Test'
    job_group: 'Test'
    TOOLSET: vc142
    TEST_TOOLSET: msvc-14.2
    APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
  - job_name: 'Visual Studio 2017, Test'
    job_group: 'Test'
    TOOLSET: vc141
    TEST_TOOLSET: msvc-14.1
    APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
  - job_name: 'Visual Studio 2015, Test'
    job_group: 'Test'
    TOOLSET: vc14
    TEST_TOOLSET: msvc-14.0
    APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
  - job_name: 'Clang 18 (VS2022), Test'
    job_group: 'Test'
    TOOLSET: clang-win
    TEST_TOOLSET: clang-win
    B2_DONT_EMBED_MANIFEST: true  # lld-link: error: unable to find mt.exe in PATH: no such file or directory
    APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
  - job_name: 'Clang 9 (VS2015), Test'
    job_group: 'Test'
    TOOLSET: clang-win
    TEST_TOOLSET: clang-win
    B2_DONT_EMBED_MANIFEST: true  # lld-link: error: unable to find mt.exe in PATH: no such file or directory
    APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2015
  - job_name: 'Cygwin 3.4.6 x64, Test'
    job_group: 'TestCygwin'
    TOOLSET: gcc
    TEST_TOOLSET: gcc
    APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2022
    B2_CXX_PATH: C:/cygwin64/bin

build_script:
  - cmd: |
      cd src/engine
      set PATH=%B2_CXX_PATH%;%PATH%
  - cmd: |
      ./build.bat %TOOLSET%
  - cmd: |
      cd ../..
      src\engine\b2.exe -v

for:
  - matrix:
      only:
        - job_group: 'Test'

    test_script:
      - cmd: |
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> TEST"
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
          cd test
          py -X utf8 test_all.py %TEST_TOOLSET%
          cd ..
      - cmd: |
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> NO WARNINGS"
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
          src\engine\b2.exe --debug-configuration b2 warnings-as-errors=on variant=debug,release address-model=32,64 toolset=%TEST_TOOLSET%
      - cmd: |
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> BOOTSTRAP"
          echo ">>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>"
          bootstrap.bat %TOOLSET%
          b2.exe --debug-configuration --prefix=./.b2 install toolset=%TEST_TOOLSET%