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:
|
|
|
|
cmake:
|
|
|
|
strategy:
|
|
|
|
fail-fast: false
|
|
|
|
matrix:
|
2020-08-02 03:09:32 +00:00
|
|
|
runs-on: [ubuntu-latest, macos-latest]
|
|
|
|
arch: [x64]
|
|
|
|
cmake: [3.7, 3.18]
|
2020-07-29 00:13:09 +00:00
|
|
|
|
2020-08-02 03:09:32 +00:00
|
|
|
include:
|
|
|
|
- runs-on: windows-latest
|
|
|
|
arch: x64
|
|
|
|
cmake: 3.18
|
|
|
|
|
|
|
|
# TODO: 3.8
|
|
|
|
- runs-on: windows-2016
|
|
|
|
arch: x86
|
|
|
|
cmake: 3.11
|
|
|
|
|
|
|
|
- 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
|
|
|
|
|
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
|
|
|
|
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)")
|