Release version 4.0.0. #30
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
name: Tests | |
on: push | |
jobs: | |
tests: | |
name: Tests | |
runs-on: ${{ matrix.os }} | |
container: ${{ matrix.container }} | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
- os: ubuntu-22.04 | |
platform: linux-gcc CXX=g++-9 | |
- os: ubuntu-22.04 | |
platform: linux-gcc CXX=g++-10 | |
- os: ubuntu-22.04 | |
platform: linux-gcc CXX=g++-11 | |
- os: ubuntu-22.04 | |
platform: linux-gcc CXX=g++-12 | |
- os: ubuntu-22.04 | |
platform: linux-gcc | |
container: quay.io/pypa/manylinux2014_x86_64 | |
- os: ubuntu-22.04 | |
platform: linux-clang CXX=clang++-13 | |
- os: ubuntu-22.04 | |
platform: linux-clang CXX=clang++-14 | |
- os: ubuntu-22.04 | |
platform: linux-clang CXX=clang++-15 | |
- os: windows-2019 | |
platform: win-vs-32 | |
- os: windows-2019 | |
platform: win-vs-64 | |
- os: windows-2022 | |
platform: win-vs-32 | |
- os: windows-2022 | |
platform: win-vs-64 | |
- os: macos-11 | |
platform: macos-clang-64 | |
- os: macos-11 | |
platform: macos-clang-arm64 | |
steps: | |
- uses: actions/checkout@v3 | |
- if: startsWith(matrix.os, 'windows') | |
name: Windows - Set up MSVC | |
uses: ilammy/msvc-dev-cmd@v1 | |
with: | |
arch: ${{ endswith(matrix.platform, '-32') && 'x86' || 'x64' }} | |
- if: startsWith(matrix.os, 'windows') | |
name: Windows - Install make | |
run: choco install --no-progress -y make | |
- if: matrix.container == 'quay.io/pypa/manylinux2014_x86_64' | |
name: Manylinux2014 container - Set default python3 | |
run: ln -s $(which python3.10) /usr/bin/python3 | |
- name: Compile tests | |
run: make PLATFORM=${{ matrix.platform }} -k -C tests compile | |
env: | |
C_FLAGS: $(treat_warnings_as_errors) | |
- name: Run tests | |
run: make PLATFORM=${{ matrix.platform }} -k -C tests test | |
if: matrix.platform != 'macos-clang-arm64' |