@@ -26,25 +26,25 @@ jobs:
26
26
run : choco install openssl
27
27
28
28
- name : Setup Boost
29
- run : ./ tools/ci.py setup-boost --source-dir=$(pwd)
29
+ run : python3 tools/ci.py setup-boost --source-dir=$(pwd)
30
30
31
31
- name : Build a Boost distribution using B2
32
32
run : |
33
- ./ tools/ci.py build-b2-distro \
33
+ python3 tools/ci.py build-b2-distro \
34
34
--generator "${{ matrix.generator }}" \
35
35
--toolset ${{ matrix.toolset }}
36
36
37
37
- name : Build a Boost distribution using CMake
38
38
run : |
39
- ./ tools/ci.py build-cmake-distro \
39
+ python3 tools/ci.py build-cmake-distro \
40
40
--build-type ${{ matrix.build-type }} \
41
41
--cxxstd ${{ matrix.cxxstd }} \
42
42
--toolset ${{ matrix.toolset }} \
43
43
--generator "${{ matrix.generator }}"
44
44
45
45
- name : Build the project tests
46
46
run : |
47
- ./ tools/ci.py build-cmake-standalone-tests \
47
+ python3 tools/ci.py build-cmake-standalone-tests \
48
48
--build-type ${{ matrix.build-type }} \
49
49
--cxxstd ${{ matrix.cxxstd }} \
50
50
--toolset ${{ matrix.toolset }} \
@@ -53,26 +53,26 @@ jobs:
53
53
# # TODO: re-enable this when a Redis server is available for this job
54
54
# - name: Run the project tests
55
55
# run: |
56
- # ./ tools/ci.py run-cmake-standalone-tests \
56
+ # python3 tools/ci.py run-cmake-standalone-tests \
57
57
# --build-type ${{ matrix.build-type }}
58
58
59
59
- name : Run add_subdirectory tests
60
60
run : |
61
- ./ tools/ci.py run-cmake-add-subdirectory-tests \
61
+ python3 tools/ci.py run-cmake-add-subdirectory-tests \
62
62
--build-type ${{ matrix.build-type }} \
63
63
--toolset ${{ matrix.toolset }} \
64
64
--generator "${{ matrix.generator }}"
65
65
66
66
- name : Run find_package tests with the built cmake distribution
67
67
run : |
68
- ./ tools/ci.py run-cmake-find-package-tests \
68
+ python3 tools/ci.py run-cmake-find-package-tests \
69
69
--build-type ${{ matrix.build-type }} \
70
70
--toolset ${{ matrix.toolset }} \
71
71
--generator "${{ matrix.generator }}"
72
72
73
73
- name : Run find_package tests with the built b2 distribution
74
74
run : |
75
- ./ tools/ci.py run-cmake-b2-find-package-tests \
75
+ python3 tools/ci.py run-cmake-b2-find-package-tests \
76
76
--build-type ${{ matrix.build-type }} \
77
77
--toolset ${{ matrix.toolset }} \
78
78
--generator "${{ matrix.generator }}"
@@ -110,7 +110,8 @@ jobs:
110
110
run : ./tools/ci.py setup-boost --source-dir=$(pwd)
111
111
112
112
- name : Build a Boost distribution using B2
113
- run : ./tools/ci.py build-b2-distro \
113
+ run : |
114
+ ./tools/ci.py build-b2-distro \
114
115
--toolset ${{ matrix.toolset }}
115
116
116
117
- name : Build a Boost distribution using CMake
0 commit comments