Skip to content
45 changes: 0 additions & 45 deletions .github/workflows/test-ubuntu-py-ver.yml

This file was deleted.

20 changes: 11 additions & 9 deletions .github/workflows/test-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,17 +17,19 @@ jobs:
cxx: [g++, clang++]
std: [c++11, c++14, c++17]
include:
# Add the appropriate docker image for each compiler.
# The images from teeks99/boost-python-test already have boost::python
# pre-reqs installed, see:
# https://github.com/teeks99/boost-python-test-docker
- cxx: clang++
docker-img: teeks99/boost-python-test:clang-21_1.89.0
- cxx: g++
docker-img: teeks99/boost-python-test:gcc-15_1.89.0
# Also test with free-threaded build of Python
- python-version: '3.14t'
cxx: clang+
Copy link
Member

@stefanseefeld stefanseefeld Nov 27, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

that looks like a typo. The value should probably be clang++.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, I change that line from g++ to clang++ at the last moment (thinking maybe Clang will be a bit faster for CI runs). Fixed now but a lesson to not change things at the last minute, after you tested them.

std: c++17

container:
image: ${{ matrix.docker-img }}
# Add the appropriate docker image for the compiler.
# The images from teeks99/boost-python-test already have boost::python
# pre-reqs installed, see:
# https://github.com/teeks99/boost-python-test-docker
image: ${{ matrix.cxx == 'g++' &&
'teeks99/boost-python-test:gcc-15_1.89.0' ||
'teeks99/boost-python-test:clang-21_1.89.0' }}

steps:
- uses: actions/checkout@v5
Expand Down
Loading