Skip to content

[feature/CI_setup] more CI tinkering #15

[feature/CI_setup] more CI tinkering

[feature/CI_setup] more CI tinkering #15

Workflow file for this run

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
du build/tests/test_pauli_op
- name: Test C++
run: ctest --test-dir build --verbose
# - name: Test Python
# run: PYTHONPATH=build:$PYTHONPATH pytest -v test