[feature/CI_setup] more CI tinkering #12
Workflow file for this run
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: All push | |
on: [push] | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest] | |
compiler: [g++-12] | |
# compiler: [g++-12, clang++-17] | |
# python-version: ["3.10", "3.11", "3.12"] | |
python-version: ["3.10"] | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Setup compiler | |
run: python3 ./.github/compiler_setup.py ${{ matrix.compiler }} | |
- name: Setup Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install Python dependencies | |
run: python -m pip install numpy pytest cmake | |
- name: Configure CMake | |
env: | |
CXX: ${{ matrix.compiler }} | |
run: cmake -B ${{github.workspace}}/build -DCMAKE_CXX_COMPILER=${CXX} | |
- name: Build | |
# Build your program with the given configuration | |
run: cmake --build ${{github.workspace}}/build --verbose --parallel | |
- name: Test C++ | |
run: ctest --test-dir build --verbose | |
# - name: Test Python | |
# run: PYTHONPATH=build:$PYTHONPATH pytest -v test |