pybind11/.github/workflows/configure.yml

139 lines
3.4 KiB
YAML
Raw Normal View History

2020-08-02 03:09:32 +00:00
name: Config
2020-07-29 00:13:09 +00:00
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.
2020-07-29 00:13:09 +00:00
cmake:
strategy:
fail-fast: false
matrix:
runs-on: [ubuntu-latest, macos-latest, windows-latest]
2020-08-02 03:09:32 +00:00
arch: [x64]
cmake: [3.18]
2020-07-29 00:13:09 +00:00
2020-08-02 03:09:32 +00:00
include:
- runs-on: ubuntu-latest
2020-08-02 03:09:32 +00:00
arch: x64
cmake: 3.4
- runs-on: macos-latest
arch: x64
cmake: 3.7
2020-08-02 03:09:32 +00:00
- runs-on: windows-2016
arch: x86
cmake: 3.8
2020-08-02 03:09:32 +00:00
- runs-on: windows-2016
arch: x86
cmake: 3.18
name: 🐍 3.7 • CMake ${{ matrix.cmake }} • ${{ matrix.runs-on }}
runs-on: ${{ matrix.runs-on }}
2020-07-29 00:13:09 +00:00
steps:
- uses: actions/checkout@v2
2020-08-02 03:09:32 +00:00
- name: Setup Python 3.7
2020-07-29 00:13:09 +00:00
uses: actions/setup-python@v2
with:
2020-08-02 03:09:32 +00:00
python-version: 3.7
architecture: ${{ matrix.arch }}
2020-07-29 00:13:09 +00:00
- 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
2020-08-02 03:09:32 +00:00
- name: Setup CMake ${{ matrix.cmake }}
2020-07-29 00:13:09 +00:00
uses: jwlawson/actions-setup-cmake@v1.3
with:
2020-08-02 03:09:32 +00:00
cmake-version: ${{ matrix.cmake }}
2020-07-29 00:13:09 +00:00
# These steps use a directory with a space in it intentionally
2020-08-02 03:09:32 +00:00
- name: Make build directories
run: mkdir "build dir"
2020-07-29 00:13:09 +00:00
2020-08-02 03:09:32 +00:00
- name: Configure
working-directory: build dir
shell: bash
2020-07-29 00:13:09 +00:00
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/*