Update tests.yml #596
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
jobs: | |
tests: | |
name: ${{ matrix.os }}-${{ matrix.compiler }}-${{ matrix.version }}-python-${{ matrix.python-version }}-${{ matrix.castxml-epic }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04 | |
compiler: gcc | |
version: "11" | |
python-version: "3.11" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 1 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 1 | |
cppstd: "-std=c++11" | |
- os: ubuntu-22.04-arm64 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04-arm64 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04-arm64 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04-arm64 | |
compiler: gcc | |
version: "11" | |
python-version: "3.11" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04-arm64 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 1 | |
cppstd: "-std=c++17" | |
- os: ubuntu-22.04-arm64 | |
compiler: gcc | |
version: "11" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 1 | |
cppstd: "-std=c++11" | |
- os: ubuntu-24.04-arm64 | |
compiler: gcc | |
version: "14" | |
python-version: "3.12" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-24.04-arm64 | |
compiler: gcc | |
version: "14" | |
python-version: "3.12" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-24.04-arm64 | |
compiler: gcc | |
version: "14" | |
python-version: "3.12" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-24.04-arm64 | |
compiler: gcc | |
version: "14" | |
python-version: "3.12" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-24.04-arm64 | |
compiler: gcc | |
version: "14" | |
python-version: "3.12" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: ubuntu-24.04-arm64 | |
compiler: gcc | |
version: "14" | |
python-version: "3.12" | |
castxml: "castxml" | |
castxml-epic: 1 | |
cppstd: "-std=c++17" | |
- os: ubuntu-24.04-arm64 | |
compiler: gcc | |
version: "14" | |
python-version: "3.12" | |
castxml: "castxml" | |
castxml-epic: 1 | |
cppstd: "-std=c++17" | |
- os: macos-13 | |
compiler: xcode | |
version: "default" | |
python-version: "3.10" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
- os: macos-15 | |
compiler: xcode | |
version: "default" | |
python-version: "3.12" | |
castxml: "castxml" | |
castxml-epic: 0 | |
cppstd: "-std=c++17" | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Display Python version | |
run: python -c "import sys; print(sys.version)" | |
- name: Install Python lib and test libs | |
run: | | |
pip install '.[test]' | |
- name: Run pycodestyle | |
run: pycodestyle . --exclude=docs | |
- name: Setup castxml for Linux | |
if: (matrix.os == 'ubuntu-20.04' || matrix.os == 'ubuntu-22.04' || matrix.os == 'ubuntu-24.04' || startsWith(matrix.os, 'ubuntu-22.04-arm') || startsWith(matrix.os, 'ubuntu-24.04-arm')) && matrix.castxml == 'castxml' | |
run: | | |
wget -q -O - https://data.kitware.com/api/v1/file/hashsum/sha512/bdbb67a10c5f8d1b738cd19cb074f409d4803e8077cb8c1072ef4eaf738fa871a73643f9c8282d58cae28d188df842c82ad6620b6d590b0396a0172a27438dce/download | tar zxf - -C ~/ | |
- name: Setup castxml for Mac | |
if: matrix.os == 'macos-13' || startsWith(matrix.os, 'macos-15') | |
run: | | |
wget -q -O - https://data.kitware.com/api/v1/file/hashsum/sha512/5d937e938f7b882a3a3e7941e68f8312d0898aaf2082e00003dd362b1ba70b98b0a08706a1be28e71652a6a0f1e66f89768b5eaa20e5a100592d5b3deefec3f0/download | tar zxf - -C ~/ | |
- name: Run tests | |
run: | | |
export PATH=~/castxml/bin:$PATH | |
pytest tests |