mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-25 22:52:01 +00:00
fd61f5038e
* feat: setup.py redesign and helpers * refactor: simpler design with two outputs * refactor: helper file update and Windows support * fix: review points from @YannickJadoul * refactor: fixes to naming and more docs * feat: more customization points * feat: add entry point pybind11-config * refactor: Try Extension-focused method * refactor: rename alt/inplace to global * fix: allow usage with git modules, better docs * feat: global as an extra (@YannickJadoul's suggestion) * feat: single version location * fix: remove the requirement that setuptools must be imported first * fix: some review points from @wjacob * fix: use .in, add procedure to docs * refactor: avoid monkeypatch copy * docs: minor typos corrected * fix: minor points from @YannickJadoul * fix: typo on Windows C++ mode * fix: MSVC 15 update 3+ have c++14 flag See <https://docs.microsoft.com/en-us/cpp/build/reference/std-specify-language-standard-version?view=vs-2019> * docs: discuss making SDists by hand * ci: use pep517.build instead of manual setup.py * refactor: more comments from @YannickJadoul * docs: updates from @ktbarrett * fix: change to newly recommended tool instead of pep517.build This was intended as a proof of concept; build seems to be the correct replacement. See https://github.com/pypa/pep517/pull/83 * docs: updates from @wjakob * refactor: dual version locations * docs: typo spotted by @wjakob
139 lines
3.4 KiB
YAML
139 lines
3.4 KiB
YAML
name: Config
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- master
|
|
- stable
|
|
- v*
|
|
|
|
jobs:
|
|
# This tests various versions of CMake in various combinations, to make sure
|
|
# the configure step passes.
|
|
cmake:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
runs-on: [ubuntu-latest, macos-latest, windows-latest]
|
|
arch: [x64]
|
|
cmake: [3.18]
|
|
|
|
include:
|
|
- runs-on: ubuntu-latest
|
|
arch: x64
|
|
cmake: 3.4
|
|
|
|
- runs-on: macos-latest
|
|
arch: x64
|
|
cmake: 3.7
|
|
|
|
- runs-on: windows-2016
|
|
arch: x86
|
|
cmake: 3.8
|
|
|
|
- runs-on: windows-2016
|
|
arch: x86
|
|
cmake: 3.18
|
|
|
|
name: 🐍 3.7 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }}
|
|
runs-on: ${{ matrix.runs-on }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup Python 3.7
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.7
|
|
architecture: ${{ matrix.arch }}
|
|
|
|
- name: Prepare env
|
|
run: python -m pip install -r tests/requirements.txt
|
|
|
|
# An action for adding a specific version of CMake:
|
|
# https://github.com/jwlawson/actions-setup-cmake
|
|
- name: Setup CMake ${{ matrix.cmake }}
|
|
uses: jwlawson/actions-setup-cmake@v1.3
|
|
with:
|
|
cmake-version: ${{ matrix.cmake }}
|
|
|
|
# These steps use a directory with a space in it intentionally
|
|
- name: Make build directories
|
|
run: mkdir "build dir"
|
|
|
|
- name: Configure
|
|
working-directory: build dir
|
|
shell: bash
|
|
run: >
|
|
cmake ..
|
|
-DPYBIND11_WERROR=ON
|
|
-DDOWNLOAD_CATCH=ON
|
|
-DPYTHON_EXECUTABLE=$(python -c "import sys; print(sys.executable)")
|
|
|
|
# Only build and test if this was manually triggered in the GitHub UI
|
|
- name: Build
|
|
working-directory: build dir
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: cmake --build . --config Release
|
|
|
|
- name: Test
|
|
working-directory: build dir
|
|
if: github.event_name == 'workflow_dispatch'
|
|
run: cmake --build . --config Release --target check
|
|
|
|
# This builds the sdists and wheels and makes sure the files are exactly as
|
|
# expected. Using Windows and Python 2.7, since that is often the most
|
|
# challenging matrix element.
|
|
test-packaging:
|
|
name: 🐍 2.7 • 📦 tests • windows-latest
|
|
runs-on: windows-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup 🐍 2.7
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 2.7
|
|
|
|
- name: Prepare env
|
|
run: python -m pip install -r tests/requirements.txt --prefer-binary
|
|
|
|
- name: Python Packaging tests
|
|
run: pytest tests/extra_python_package/
|
|
|
|
|
|
# This runs the packaging tests and also builds and saves the packages as
|
|
# artifacts.
|
|
packaging:
|
|
name: 🐍 3.8 • 📦 & 📦 tests • ubuntu-latest
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup 🐍 3.8
|
|
uses: actions/setup-python@v2
|
|
with:
|
|
python-version: 3.8
|
|
|
|
- name: Prepare env
|
|
run: python -m pip install -r tests/requirements.txt build twine --prefer-binary
|
|
|
|
- name: Python Packaging tests
|
|
run: pytest tests/extra_python_package/
|
|
|
|
- name: Build SDist and wheels
|
|
run: |
|
|
python -m build -s -w .
|
|
PYBIND11_GLOBAL_SDIST=1 python -m build -s -w .
|
|
|
|
- name: Check metadata
|
|
run: twine check dist/*
|
|
|
|
- uses: actions/upload-artifact@v2
|
|
with:
|
|
path: dist/*
|