Skip to content

Commit a02837a

Browse files
committed
Explicit Python & typos
1 parent 4a39a0d commit a02837a

File tree

1 file changed

+10
-9
lines changed

1 file changed

+10
-9
lines changed

.github/workflows/ci.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -26,25 +26,25 @@ jobs:
2626
run: choco install openssl
2727

2828
- name: Setup Boost
29-
run: ./tools/ci.py setup-boost --source-dir=$(pwd)
29+
run: python3 tools/ci.py setup-boost --source-dir=$(pwd)
3030

3131
- name: Build a Boost distribution using B2
3232
run: |
33-
./tools/ci.py build-b2-distro \
33+
python3 tools/ci.py build-b2-distro \
3434
--generator "${{ matrix.generator }}" \
3535
--toolset ${{ matrix.toolset }}
3636
3737
- name: Build a Boost distribution using CMake
3838
run: |
39-
./tools/ci.py build-cmake-distro \
39+
python3 tools/ci.py build-cmake-distro \
4040
--build-type ${{ matrix.build-type }} \
4141
--cxxstd ${{ matrix.cxxstd }} \
4242
--toolset ${{ matrix.toolset }} \
4343
--generator "${{ matrix.generator }}"
4444
4545
- name: Build the project tests
4646
run: |
47-
./tools/ci.py build-cmake-standalone-tests \
47+
python3 tools/ci.py build-cmake-standalone-tests \
4848
--build-type ${{ matrix.build-type }} \
4949
--cxxstd ${{ matrix.cxxstd }} \
5050
--toolset ${{ matrix.toolset }} \
@@ -53,26 +53,26 @@ jobs:
5353
# # TODO: re-enable this when a Redis server is available for this job
5454
# - name: Run the project tests
5555
# run: |
56-
# ./tools/ci.py run-cmake-standalone-tests \
56+
# python3 tools/ci.py run-cmake-standalone-tests \
5757
# --build-type ${{ matrix.build-type }}
5858

5959
- name: Run add_subdirectory tests
6060
run: |
61-
./tools/ci.py run-cmake-add-subdirectory-tests \
61+
python3 tools/ci.py run-cmake-add-subdirectory-tests \
6262
--build-type ${{ matrix.build-type }} \
6363
--toolset ${{ matrix.toolset }} \
6464
--generator "${{ matrix.generator }}"
6565
6666
- name: Run find_package tests with the built cmake distribution
6767
run: |
68-
./tools/ci.py run-cmake-find-package-tests \
68+
python3 tools/ci.py run-cmake-find-package-tests \
6969
--build-type ${{ matrix.build-type }} \
7070
--toolset ${{ matrix.toolset }} \
7171
--generator "${{ matrix.generator }}"
7272
7373
- name: Run find_package tests with the built b2 distribution
7474
run: |
75-
./tools/ci.py run-cmake-b2-find-package-tests \
75+
python3 tools/ci.py run-cmake-b2-find-package-tests \
7676
--build-type ${{ matrix.build-type }} \
7777
--toolset ${{ matrix.toolset }} \
7878
--generator "${{ matrix.generator }}"
@@ -110,7 +110,8 @@ jobs:
110110
run: ./tools/ci.py setup-boost --source-dir=$(pwd)
111111

112112
- name: Build a Boost distribution using B2
113-
run: ./tools/ci.py build-b2-distro \
113+
run: |
114+
./tools/ci.py build-b2-distro \
114115
--toolset ${{ matrix.toolset }}
115116
116117
- name: Build a Boost distribution using CMake

0 commit comments

Comments
 (0)