2
0
mirror of https://github.com/boostorg/python.git synced 2026-01-19 16:32:16 +00:00

Using docker images to execut the github actions for testing (#335)

Introduce github action-based test workflow for Ubuntu.
This commit is contained in:
Tom Kent
2020-12-22 15:56:09 -06:00
committed by GitHub
parent c9521a8ef5
commit 97a8550a9f

47
.github/workflows/build_test_docker.yml vendored Normal file
View File

@@ -0,0 +1,47 @@
name: Build and Test - Linux Docker
on: [ push, pull_request ]
jobs:
build:
# ubuntu-latest will be shortly upgrading to this
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python: [ python, python3 ]
cxx: [ g++, clang++ ]
std: [ c++98, c++11]
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-11_1.66.0
- cxx: g++
docker-img: teeks99/boost-python-test:gcc-9_1.66.0
container:
image: ${{ matrix.docker-img }}
steps:
- uses: actions/checkout@v2
- name: Test
run: |
${{ matrix.python }} --version
${{ matrix.cxx }} --version
faber -v
ls -l ${BOOST_PY_DEPS}
sed -e "s/\$PYTHON/${{ matrix.python }}/g" .ci/faber > ~/.faber
faber \
--with-boost-include=${BOOST_PY_DEPS} \
--builddir=build test.report \
cxx.name=${{ matrix.cxx }} \
cxxflags=-std=${{ matrix.std }} \
-j`nproc`